Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getValueType (0.28 sec)

  1. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    def IsFalseBoolAttr : AttrConstraint<
      CPred<"!$_self.cast<BoolAttr>().getValue()">>;
    
    // Checks if the value has only one user.
    def HasOneUse : Constraint<CPred<"$0.hasOneUse()">>;
    
    // Gets the type of a value.
    def GetValueType : NativeCodeCall<"$0.getType()">;
    
    // Checks if the value has the type of int8.
    def IsInt8ElementType : Constraint<
      CPred<"getElementTypeOrSelf($0).isInteger(8)">>;
    
    // Checks if the value has the type of int32.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top