Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for var_name (0.47 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      """
      variable_nodes = {}
    
      for var_node in filter(_is_variable, graph_def.node):
        shared_name = str(var_node.attr['shared_name'].s, encoding='utf-8')
        variable_nodes[shared_name] = var_node
    
      for func in graph_def.library.function:
        for var_node in filter(_is_variable, func.node_def):
          variable_nodes[shared_name] = var_node
    
      return variable_nodes
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    RUN_CCM_CONTROLLERS: $(yaml-quote "${RUN_CCM_CONTROLLERS}")
    EOF
      fi
      if [ -n "${PROVIDER_VARS:-}" ]; then
        local var_name
        local var_value
    
        for var_name in ${PROVIDER_VARS}; do
          eval "local var_value=\$(yaml-quote \${${var_name}})"
          cat >>"$file" <<EOF
    ${var_name}: ${var_value}
    EOF
        done
      fi
    
      if [[ "${master}" == "true" ]]; then
        # Master-only env vars.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          brevity)
          ```mlir
            func.func @hoist_loop_invariant(%arg0, %arg1) {
              %var = "tf.VarHandleOp"() {container="", shared_name="var_name", device = "/device:CPU:0"}
              %results:2 = "tf.WhileRegion"(%arg0, %arg1) ({
              ^bb0(%arg2, %arg3):
                %0 = "tf.OpA"() {is_stateless = true}
                "tf.Yield"(%0)
              }, {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    }
    
    // cover runs, in effect,
    //
    //	go tool cover -mode=b.coverMode -var="varName" -o dst.go src.go
    func (b *Builder) cover(a *Action, dst, src string, varName string) error {
    	return b.Shell(a).run(a.Objdir, "", nil,
    		cfg.BuildToolexec,
    		base.Tool("cover"),
    		"-mode", a.Package.Internal.Cover.Mode,
    		"-var", varName,
    		"-o", dst,
    		src)
    }
    
    // cover2 runs, in effect,
    //
    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