Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for num_args (0.13 sec)

  1. hack/ginkgo-e2e.sh

      NODE_INSTANCE_GROUP="${NODE_INSTANCE_PREFIX}-group"
    fi
    
    if [[ "${KUBERNETES_PROVIDER}" == "gce" ]]; then
      set_num_migs
      NODE_INSTANCE_GROUP=""
      for ((i=1; i<=NUM_MIGS; i++)); do
        if [[ ${i} == "${NUM_MIGS}" ]]; then
          # We are assigning the same mig names as create-nodes function from cluster/gce/util.sh.
          NODE_INSTANCE_GROUP="${NODE_INSTANCE_GROUP}${NODE_INSTANCE_PREFIX}-group"
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/AbstractInvocationHandler.java

     * </pre>
     *
     * @author Ben Yu
     * @since 12.0
     */
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractInvocationHandler implements InvocationHandler {
    
      private static final Object[] NO_ARGS = {};
    
      /**
       * {@inheritDoc}
       *
       * <ul>
       *   <li>{@code proxy.hashCode()} delegates to {@link AbstractInvocationHandler#hashCode}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_functional_to_executor.cc

    namespace mlir {
    
    namespace {
    // This pass converts mlir functions consisting of mlir ops into a tf_executor
    // dialect as a single island.
    // Result like so:
    //   func @my_fn(%argi...) -> (result_t) {
    //     %results:[[n_args]] = tf_executor.graph {
    //        %island_results:[[nargs + 1]] = tf_executor.island {
    //          ... original ops ...
    //          tf_executor.yield %results...
    //        }
    //        tf_executor.fetch %island_results#...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

        return it->getFirst().getType();
      };
      auto add_size_vars_to_return = [&](ArrayRef<BlockArgument> new_args) {
        if (new_args.empty()) return;
        auto body_ret = body.front().getTerminator();
        auto new_body_returns = llvm::to_vector<8>(body_ret->getOperands());
        for (auto arg : new_args) new_body_returns.push_back(arg);
        OpBuilder(body_ret).create<func::ReturnOp>(body_ret->getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

      ValueRange old_args = block.getArguments().take_front(old_args_size);
      ValueRange new_args = block.getArguments().drop_front(old_args_size);
      assert(!new_args.empty());
    
      ReplaceWithTupleResult(builder, old_args, new_args, /*flatten_tuple=*/true);
      auto new_arg = new_args[new_args.size() - 1];
    
      block.eraseArguments(0, old_args_size);
    
      return new_arg;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/next_pluggable_device/c_api.h

        TF_OpKernelContext* ctx, int index, TF_Status* status);
    
    TF_CAPI_EXPORT extern void TF_LockVariableInfos(TF_VariableInfo** vars,
                                                    int num_vars,
                                                    TF_Status* status);
    
    TF_CAPI_EXPORT extern void TF_AllocateTempForVariableInfo(
        TF_OpKernelContext* ctx, TF_VariableInfo* var_info, TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/service.go

    //sys	OpenService(mgr Handle, serviceName *uint16, access uint32) (handle Handle, err error) [failretval==0] = advapi32.OpenServiceW
    //sys	DeleteService(service Handle) (err error) = advapi32.DeleteService
    //sys	StartService(service Handle, numArgs uint32, argVectors **uint16) (err error) = advapi32.StartServiceW
    //sys	QueryServiceStatus(service Handle, status *SERVICE_STATUS) (err error) = advapi32.QueryServiceStatus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    	} else {
    		psl := state.pendingSlotLocs[:numPieces]
    		for i := range psl {
    			psl[i] = VarLoc{}
    		}
    	}
    	if cap(state.pendingEntries) < numVars {
    		state.pendingEntries = make([]pendingEntry, numVars)
    	}
    	pe := state.pendingEntries[:numVars]
    	freePieceIdx := 0
    	for varID, slots := range state.varSlots {
    		pe[varID] = pendingEntry{
    			pieces: state.pendingSlotLocs[freePieceIdx : freePieceIdx+len(slots)],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

    # - NUM_WINDOWS_NODES
    # exports:
    # - NUM_MIGS
    # - NUM_WINDOWS_MIGS
    function set_num_migs() {
      local defaulted_max_instances_per_mig=${MAX_INSTANCES_PER_MIG:-1000}
    
      if [[ ${defaulted_max_instances_per_mig} -le "0" ]]; then
        echo "MAX_INSTANCES_PER_MIG cannot be negative. Assuming default 1000"
        defaulted_max_instances_per_mig=1000
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. tensorflow/c/eager/parallel_device/parallel_device_test.cc

          context.get(), components, device_name, status.get());
      ASSERT_EQ(TF_GetCode(status.get()), TF_OK) << TF_Message(status.get());
      int num_axes = TFE_TensorHandleNumDims(combined_value.get(), status.get());
      ASSERT_EQ(TF_GetCode(status.get()), TF_OK) << TF_Message(status.get());
      EXPECT_EQ(num_axes, 1);
    }
    
    TEST(PARALLEL_DEVICE, TestNestedParallelDevices) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 29.3K bytes
    - Viewed (0)
Back to top