Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 195 for Indices (0.23 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

        // final_op = "Div"
        llvm::SmallVector<int64_t> indices(group_size.getInt());
        std::iota(indices.begin(), indices.end(), 0);
    
        auto replica_groups = mlir::DenseIntElementsAttr::get(
            mlir::RankedTensorType::get({1, group_size.getInt()},
                                        rewriter.getI64Type()),
            indices);
    
        {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

                doIndexCreate = true;
                doCreate = true;
            }
    
            if (doCreate) {
                if (doIndexCreate) {
                    try {
                        client.admin().indices().prepareCreate(settingsIndexName).setSettings(loadIndexSettings(), XContentType.JSON).execute()
                                .actionGet(getIndicesTimeout());
                    } catch (final IOException e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      let description = [{
        Get a tensor in resource array.
    
        indices: the indices in the resource array.
        results: the tensor values for the corresponding indices.
    
        in_ch and out_ch are for control dependencies.
      }];
    
      let arguments = (ins
        TFRT_ChainType:$in_ch,
        StrAttr:$device,
        I64ArrayAttr:$indices
      );
    
      let results = (outs
        TFRT_ChainType:$out_ch,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/control_flow.mlir

    }
    
    // CHECK-LABEL: func @tensor_array_while_test
    // CHECK-SAME: ([[in_chain:%.*]]: !tfrt.chain
    func.func @tensor_array_while_test(%indices: tensor<?xi32>, %input_0: tensor<?x?x?xf32>, %input_1: tensor<?x?x?xf32>) -> (tensor<?x?x512xf32>, tensor<?x?x512xf32>) {
      %index = "tf.Const"() {device = "/device:CPU:0", value = dense<0> : tensor<i32>} : () -> (tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 00:40:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/hoist_invariant_ops.mlir

      attributes {tf_saved_model.exported_names = ["test_hoist_varhandleop"]} {
      // CHECK-NOT: tf.VarHandleOp
      // CHECK-NOT: tf.ReadVariableOp
      // CHECK: [[v:%.*]] = "tf._TfrtGetResource"() <{container = [""], indices = [0], shared_name = [""]}> {device = "/CPU:0"} : () -> tensor<i32>
      // CHECK: [[r:%.*]] = "tf.AddV2"({{.*}}, [[v]]) {device = "/CPU:0"} : (tensor<i32>, tensor<i32>) -> tensor<i32>
      // CHECK: return [[r]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 23:54:14 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      let summary = "get a tensor in resource array";
    
      let description = [{
        Get a tensor in resource array.
    
        indices: the indices in the resource array.
        results: the tensor values for the corresponding indices.
      }];
    
      let arguments = (ins
        I64ArrayAttr:$indices
      );
    
      let results = (outs
        Variadic<TFTensorType>:$results
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/go/types/typexpr.go

    				// best position for error reporting
    				pos := ix.Pos()
    				if i < len(ix.Indices) {
    					pos = ix.Indices[i].Pos()
    				}
    				check.softErrorf(atPos(pos), InvalidTypeArg, "%v", err)
    			} else {
    				check.mono.recordInstance(check.pkg, ix.Pos(), inst.TypeParams().list(), inst.TypeArgs().list(), ix.Indices)
    			}
    		}
    
    		// TODO(rfindley): remove this call: we don't need to call validType here,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                List<Integer> indices = new ArrayList<>();
                List<String> tgt = target.getModules();
                Set<String> excludes = new LinkedHashSet<>(tgt);
                List<String> merged = new ArrayList<>(tgt.size() + src.size());
                merged.addAll(tgt);
                for (int i = 0, n = tgt.size(); i < n; i++) {
                    indices.add(i);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util.h

    // the value of the variable at the time of lowering/compilation)}.
    //
    // The obtained PjRtBuffers are populated to `args` vector.
    // `non_donatable_input_indices` will also be set, which contains the indices of
    // the input that should not be donated to output.
    //
    // There can be three types of input: 1. Tensor with PjRtTensorBuffer; 2.
    // Tensor with AsyncValueTensor; 3. Tensor with raw device mem pointer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        llvm::StringMap<PartitionedCallDecompositionInfo>*);
    
    // Adds the corresponding sizes of tensor list buffers in block's terminator
    // to the list of return values. Returns the mapping from the buffer
    // indices to the added size indices, which is a list of tuples
    // (buffer_return_index, size_return_index, fixed_size).
    template <class TerminatorOp>
    llvm::SmallVector<std::tuple<int64_t, int64_t, bool>, 8>
    AddTensorListSizesToTerminator(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
Back to top