Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsFloatShapedType (0.3 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return shaped_type.getElementType().isBF16();
      }
      return false;
    }
    
    // Returns true if it is a shaped type of FloatType elements.
    inline bool IsFloatShapedType(Type t) {
      if (auto shaped_type = t.dyn_cast_or_null<ShapedType>()) {
        return shaped_type.getElementType().isa<FloatType>();
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top