Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 214 for typeName (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize.cc

    namespace mlir::quant::stablehlo {
    
    #define GEN_PASS_DEF_QUANTIZEPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    // Base struct for quantization.
    template <typename ConcreteT, typename RootOpT = quantfork::DequantizeCastOp>
    struct StableHloQuantizationBase
        : public StableHloQuantizationPattern<ConcreteT, quantfork::QuantizeCastOp,
                                              quantfork::DequantizeCastOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 07:08:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/unroll_batch_matmul.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/core/util/matmul_bcast.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    
    template <typename BatchMatMulOpType>
    class ConvertTFBatchMatMulOp : public OpRewritePattern<BatchMatMulOpType> {
      using OpRewritePattern<BatchMatMulOpType>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

        : public impl::RewriteTPUEmbeddingOpsPassBase<RewriteTPUEmbeddingOps> {
      void runOnOperation() override;
    };
    
    // Rewrites the given op to `OpT` op after adding the given operand at the end.
    template <typename OpT>
    OpT AddOperandAndRewriteAs(Operation* op, Value operand, NamedAttrList attr,
                               OpBuilder* builder) {
      builder->setInsertionPoint(op);
      auto operands = llvm::to_vector<4>(op->getOperands());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

                );
            propertyTypeByReceiverType.forEach((receiverType, propertyType) -> {
                result.beginControlFlow("if ($T.class.isAssignableFrom(receiverClass))", TypeUtils.typeName(receiverType).box());
                result.addStatement("return $T.class", TypeUtils.typeName(propertyType).box());
                result.endControlFlow();
            });
            result.addStatement("return null");
            return result.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/go/types/object.go

    // A TypeName represents a name for a (defined or alias) type.
    type TypeName struct {
    	object
    }
    
    // NewTypeName returns a new type name denoting the given typ.
    // The remaining arguments set the attributes found with all Objects.
    //
    // The typ argument may be a defined (Named) type or an alias type.
    // It may also be nil such that the returned TypeName can be used as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                    'Use a RegularFile instance',
                    'Use a URI or URL instance',
                    'Use a TextResource instance',
                ]
                additionalData.asMap == [
                    'typeName': 'org.gradle.api.DefaultTask',
                    'propertyName': 'input',
                ]
            }
    
            where:
            method | targetType
            "dir"  | "directory"
            "file" | "file"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/typestring.go

    		w.error("nil")
    
    	case *Basic:
    		// exported basic types go into package unsafe
    		// (currently this is just unsafe.Pointer)
    		if isExported(t.name) {
    			if obj, _ := Unsafe.scope.Lookup(t.name).(*TypeName); obj != nil {
    				w.typeName(obj)
    				break
    			}
    		}
    		w.string(t.name)
    
    	case *Array:
    		w.byte('[')
    		w.string(strconv.FormatInt(t.len, 10))
    		w.byte(']')
    		w.typ(t.elem)
    
    	case *Slice:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver.go

    	// Algorithm: Starting from a type expression, which may be a name,
    	// we follow that type through alias declarations until we reach a
    	// non-alias type name. If we encounter anything but pointer types or
    	// parentheses we're done. If we encounter more than one pointer type
    	// we're done.
    	ptr = seenPtr
    	var seen map[*TypeName]bool
    	for {
    		// check if we have a pointer type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/go/types/resolver.go

    	// Algorithm: Starting from a type expression, which may be a name,
    	// we follow that type through alias declarations until we reach a
    	// non-alias type name. If we encounter anything but pointer types or
    	// parentheses we're done. If we encounter more than one pointer type
    	// we're done.
    	ptr = seenPtr
    	var seen map[*TypeName]bool
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // Full integer quantization disallows "DynamicRangeQuantized" operands or
    // results. Dynamic range quantization allows "DynamicRangeQuantized" operands
    // and results.
    template <typename ConcreteT, typename QuantizeOpT, typename DequantizeOpT,
              typename VerifierT, typename RootOpT = DequantizeOpT>
    class QuantizationPattern : public RewritePattern {
     public:
      using BaseType = QuantizationPattern<ConcreteT, QuantizeOpT, DequantizeOpT,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top