Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,121 for indices (0.76 sec)

  1. tensorflow/compiler/jit/force_xla_constants_on_host_pass.cc

          // Force all constants to be on the host memory.
          TF_RETURN_IF_ERROR(GetBodyAndConstantsAndResources(
              flr, function, &fbody, &constant_arg_indices, &resource_arg_indices));
          VLOG(3) << "Found constant arg indices: "
                  << absl::StrJoin(constant_arg_indices, ", ");
    
          node->AddAttr("_input_hostmem", constant_arg_indices);
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/net/dnsconfig.go

    	trustAD       bool          // add AD flag to queries
    	noReload      bool          // do not check for config file updates
    }
    
    // serverOffset returns an offset that can be used to determine
    // indices of servers in c.servers when making queries.
    // When the rotate option is enabled, this offset increases.
    // Otherwise it is always 0.
    func (c *dnsConfig) serverOffset() uint32 {
    	if c.rotate {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                    "of indices");
        }
      }
    
      if ((indices_rank == 0) || (indices_rank == batch_dims_i)) {
        // Scalar indices (output is rank(params) - 1).
        // Erase shape[axis]
        shape.erase(shape.begin() + axis_i);
      } else if (indices_rank == 1) {
        // Vector indices (output is rank(params)).
        // Copy indices.shape into params.shape[axis]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        $constant_operand_indices are the indices of the inputs that are constant to the TPU program (e.g. weights in inference), the rest of the inputs are input tensors.
        constant_operand_indices is sorted in ascending order.
        $operands_with_static_shape are indices of operands that are tagged with a maximum static shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. schema/index_test.go

    	}
    	indexSchema, err := schema.Parse(&IndexTest{}, &sync.Map{}, schema.NamingStrategy{})
    	if err != nil {
    		t.Fatalf("failed to parse user index, got error %v", err)
    	}
    	indices := indexSchema.ParseIndexes()
    	CheckIndices(t, map[string]schema.Index{
    		"idx_index_tests_field_a": {
    			Name:   "idx_index_tests_field_a",
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        the indices that are previously set in _TfrtSetResource op.
        `shared_name` and `container` are used to store identifying information for
        resource tensors that have been hoisted. This is important for resource
        alias analysis and side effect analysis. These are empty for non-resource
        type tensors.
      }];
    
      let arguments = (ins
        I64ArrayAttr:$indices,
        StrArrayAttr:$shared_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

              loc, indices, swap_index, scalar_one);
    
          // Then perform the swap.
          // indices[i] <- indices[swaps[i]]
          indices = builder->create<mhlo::DynamicUpdateSliceOp>(
              loc, indices.getType(), indices, target_index, llvm::ArrayRef(i));
          // indices[swaps[i]] <- indices[i]
          indices = builder->create<mhlo::DynamicUpdateSliceOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top