Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Bridge (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        Extract the islands containing a TPU cluster computation into an outlined
        function in a nested module. This will allow to run the usual bridge on this
        nested module which now exhibits a more friendly "V2-like" structure.
        This is only intended for V1 compatibility mode where the bridge runs without
        feed/fetches on session create/extend.
    
        So given e.g.
    
        ```mlir
          func @test() -> tensor<i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -I PREROUTING -p tcp ! -i eth0 -d "${METADATA_SERVER_IP}" --dport 8080 -m comment --comment "metadata-concealment: bridge traffic to metadata server goes to metadata proxy" -j DNAT --to-destination 169.254.169.252:987
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    function print-common-node-kubelet-config {
      cat <<EOF
    enableDebuggingHandlers: ${KUBELET_ENABLE_DEBUGGING_HANDLERS:-true}
    EOF
      if [[ "${HAIRPIN_MODE:-}" == "promiscuous-bridge" ]] || \
         [[ "${HAIRPIN_MODE:-}" == "hairpin-veth" ]] || \
         [[ "${HAIRPIN_MODE:-}" == "none" ]]; then
          declare quoted_hairpin_mode
          quoted_hairpin_mode=$(yaml-quote "${HAIRPIN_MODE}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	}
    
    	// Run cgo.
    	if p.UsesCgo() || p.UsesSwig() {
    		// In a package using cgo, cgo compiles the C, C++ and assembly files with gcc.
    		// There is one exception: runtime/cgo's job is to bridge the
    		// cgo and non-cgo worlds, so it necessarily has files in both.
    		// In that case gcc only gets the gcc_* files.
    		var gccfiles []string
    		gccfiles = append(gccfiles, cfiles...)
    		cfiles = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top