Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 158 for Indices (0.27 sec)

  1. src/go/types/call.go

    	"go/token"
    	. "internal/types/errors"
    	"strings"
    )
    
    // funcInst type-checks a function instantiation.
    // The incoming x must be a generic function.
    // If ix != nil, it provides some or all of the type arguments (ix.Indices).
    // If target != nil, it may be used to infer missing type arguments of x, if any.
    // At least one of T or ix must be provided.
    //
    // There are two modes of operation:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // -----
    
    // CHECK-LABEL: @gather_v2
    //  CHECK-SAME: %[[PARAMS:[a-zA-Z0-9_]+]]
    //  CHECK-SAME: %[[INDICES:[a-zA-Z0-9_]+]]
    func.func @gather_v2(%params: tensor<16x2x3xf32>, %indices: tensor<16x5xi32>) -> tensor<16x2x5xf32> {
      //      CHECK: mhlo.torch_index_select
      // CHECK-SAME:   %[[PARAMS]], %[[INDICES]]
      // CHECK-SAME:   batch_dims = 1
      // CHECK-SAME:   dim = 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/infer.go

    		smap := makeSubstMap(tparams, targs)
    		params = check.subst(nopos, params, smap, nil, check.context()).(*Tuple)
    	}
    
    	// Unify parameter and argument types for generic parameters with typed arguments
    	// and collect the indices of generic parameters with untyped arguments.
    	// Terminology: generic parameter = function parameter with a type-parameterized type
    	u := newUnifier(tparams, targs, check.allowVersion(pos, go1_21))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

            // this loop by index is required to avoid possible ConcurrentModificationException
            val annotations = annotationContainer.resolvedCompilerRequiredAnnotations(firSymbol)
            for (index in annotations.indices) {
                val annotation = annotations[index]
                if (annotation.toAnnotationClassIdSafe(useSiteSession) == classId) {
                    return true
                }
            }
    
            false
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/go/types/infer.go

    		smap := makeSubstMap(tparams, targs)
    		params = check.subst(nopos, params, smap, nil, check.context()).(*Tuple)
    	}
    
    	// Unify parameter and argument types for generic parameters with typed arguments
    	// and collect the indices of generic parameters with untyped arguments.
    	// Terminology: generic parameter = function parameter with a type-parameterized type
    	u := newUnifier(tparams, targs, check.allowVersion(posn, go1_21))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

        for (const auto& phase : group.second) {
          for (const auto& pass : phase.second) {
            // Iterate over the pass_names_ and insert the pass pointer at all the
            // corresponding indices in the pass_ids vector.
            auto iter = pass_names.begin();
            while ((iter = std::find(iter, pass_names.end(), pass->name())) !=
                   pass_names.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(subgraph->tensors[0]->quantization->zero_point, IsEmpty());
    
      // Testing output (indices) tensor type and ensuring it
      // was not quantized
      EXPECT_THAT(subgraph->tensors[1]->type, Eq(TensorType_INT64));
      EXPECT_THAT(subgraph->tensors[1]->name, Eq("indices"));
      EXPECT_THAT(subgraph->tensors[1]->quantization->scale, IsEmpty());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. src/cmd/internal/goobj/objfile.go

    // followed by that number of elements.
    //
    // The types below correspond to the encoded data structure in the
    // object file.
    
    // Symbol indexing.
    //
    // Each symbol is referenced with a pair of indices, { PkgIdx, SymIdx },
    // as the symRef struct above.
    //
    // PkgIdx is either a predeclared index (see PkgIdxNone below) or
    // an index of an imported package. For the latter case, PkgIdx is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/internal/coverage/pods/pods.go

    // file name incorporates the meta-data hash), and add the counter
    // data file to the appropriate pod.
    //
    // This process is complicated by the fact that we need to keep track
    // of directory indices for counter data files. Here is an example to
    // motivate:
    //
    //	directory 1:
    //
    // M1   covmeta.9bbf1777f47b3fcacb05c38b035512d6
    // C1   covcounters.9bbf1777f47b3fcacb05c38b035512d6.1677673.1662138360208416486
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_VariableRead]>:$resource,
        TF_I32OrI64Tensor:$indices
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedOperandTypeAttr Tindices = TF_DerivedOperandTypeAttr<1>;
      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top