Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getValueType (0.65 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)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

            return (Class) Map.class;
        }
    
        @Override
        public Class<K> getKeyType() {
            return keyType;
        }
    
        @Override
        public Class<V> getValueType() {
            return valueType;
        }
    
        @Override
        public Class<?> publicType() {
            return MapProperty.class;
        }
    
        @Override
        public int getFactoryId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top