Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for num_args (0.58 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      int64_t count;
      if (ArithmeticCountUtilHelper::GetFirstOutputCount(op, &count)) {
        // AddN cost is roughly the same cost as N-1 Adds.
        const int64_t num_adds = op->getNumOperands() - 1;
        return num_adds * count;
      }
    
      return -1;
    }
    
    //===----------------------------------------------------------------------===//
    // AveragePool2DOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func StartService(service Handle, numArgs uint32, argVectors **uint16) (err error) {
    	r1, _, e1 := syscall.Syscall(procStartServiceW.Addr(), 3, uintptr(service), uintptr(numArgs), uintptr(unsafe.Pointer(argVectors)))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top