Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for output_batch (0.15 sec)

  1. hack/lib/golang.sh

    kube::golang::outfile_for_binary() {
      local binary=$1
      local platform=$2
      local output_path="${KUBE_GOPATH}/bin"
      local bin
      bin=$(basename "${binary}")
      if [[ "${platform}" != "${host_platform}" ]]; then
        output_path="${output_path}/${platform//\//_}"
      fi
      if [[ ${GOOS} == "windows" ]]; then
        bin="${bin}.exe"
      fi
      echo "${output_path}/${bin}"
    }
    
    # Argument: the name of a Kubernetes package.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    Once you have a converted TfLite model ready, you can use the following command
    to use TAC to optimize for your model:
    
    ```
    bazel run -c opt //tensorflow/compiler/mlir/lite/experimental/tac:tac-translate -- <PATH_TO_YOUR_MODEL> -o=<OUTPUT_PATH> -device-specs=<HARDWARE_BACKENDS>
    ```
    
    The devices_specs is a list of the names of the desired hardware backends,
    separated by comma, e.g., "GPU,CPU".
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
Back to top