Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for concreteEtype (0.2 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	}
    
    	if ft.IsFloat() || tt.IsFloat() {
    		conv, ok := fpConvOpToSSA[twoTypes{s.concreteEtype(ft), s.concreteEtype(tt)}]
    		if s.config.RegSize == 4 && Arch.LinkArch.Family != sys.MIPS && !s.softFloat {
    			if conv1, ok1 := fpConvOpToSSA32[twoTypes{s.concreteEtype(ft), s.concreteEtype(tt)}]; ok1 {
    				conv = conv1
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K 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:
    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; }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            'SomeBuildService'                    | BuildService                   | "project.gradle.sharedServices.registerIfAbsent('service', SomeBuildService) {}.get()"
    
            concreteTypeName = concreteType instanceof Class ? concreteType.name : concreteType
        }
    
        private static executorServiceTypeOnCurrentJvm() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleUnsupportedTypesIntegrationTest.groovy

            'SomeBuildService'                | BuildService     | "gradle.sharedServices.registerIfAbsent('service', SomeBuildService) {}.get()"
    
            concreteTypeName = concreteType instanceof Class ? concreteType.name : concreteType
        }
    
        private static executorServiceTypeOnCurrentJvm() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/reflectdata/helpers.go

    	base.AssertfAt(typ.IsSlice(), pos, "want slice type, have %v", typ)
    	return TypePtrAt(pos, typ.Elem())
    }
    
    // concreteRType asserts that typ is not an interface type, and
    // returns an expression that yields the *runtime._type value
    // representing typ.
    func concreteRType(pos src.XPos, typ *types.Type) ir.Node {
    	base.AssertfAt(!typ.IsInterface(), pos, "want non-interface type, have %v", typ)
    	return TypePtrAt(pos, typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      IntegerAttr stride_height;
      IntegerAttr stride_width;
    };
    
    // Templated class for declaring a converter from some TensorFlow convolution
    // op into its counterpart in TensorFlow Lite.
    //
    // The `ConcreteType` deriving from this template must provide the following
    // method for constructing TensorFlow Lite op:
    //
    //   TFL::[op] createTFLOp(ConvertTFConvOpMatchState *state,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // constant zero.
    // `ConcreteOpType` must be an concrete MLIR op class that has an optional
    // bias operand named 'bias'.
    template <typename ConcreteOpType>
    struct RemoveOptionalZeroBias : public OpRewritePattern<ConcreteOpType> {
      using OpRewritePattern<ConcreteOpType>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(ConcreteOpType op,
    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