Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for concreteEtype (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top