Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for traitMask (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/types.go

    			KeyType:           t.KeyType,
    			ElemType:          t.ElemType,
    			TypeParam:         t.TypeParam,
    			Metadata:          t.Metadata,
    			celType:           cel.ObjectType(name),
    			traitMask:         t.traitMask,
    			defaultValue:      t.defaultValue,
    			MinSerializedSize: t.MinSerializedSize,
    		}
    	}
    	if t.IsMap() {
    		elemTypeName := fmt.Sprintf("%s.@elem", name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

    template <typename ConcreteType>
    class LayoutAgnostic : public TraitBase<ConcreteType, LayoutAgnostic> {};
    
    // Trait to indicate operations that cannot be duplicated as they might carry
    // certain state around within their implementations.
    template <typename ConcreteType>
    class CannotDuplicate : public TraitBase<ConcreteType, CannotDuplicate> {
     public:
      static LogicalResult verifyTrait(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_traits.h

    namespace OpTrait {
    namespace quant {
    
    // The base class that all the quantization related OpTrait implements.
    template <typename ConcreteType, template <typename> class TraitType>
    struct QuantizationSpecTraitBase : public TraitBase<ConcreteType, TraitType> {
      static bool IsBias(int index) { return false; }
      static bool IsQuantizable() { return true; }
    };
    
    // This class provides the API for ops that has a fixed output value range.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top