Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 540 for outp (0.04 sec)

  1. tensorflow/cc/experimental/libtf/function.cc

      Flatten(value, &args);
      std::vector<AbstractTensorHandle*> outs(
          GetFlatSize(concrete_fn.output_signature));
      TF_RETURN_IF_ERROR(
          ExecuteFunction(concrete_fn.trace, ctx, args, absl::MakeSpan(outs)));
      auto cleanup_tensors = absl::MakeCleanup([outs]() {
        for (auto t : outs) {
          t->Unref();
        }
      });
      return Unflatten(outs, concrete_fn.output_signature);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/os/executable_test.go

    	}
    	cmd.Env = append(cmd.Environ(), fmt.Sprintf("%s=1", executable_EnvVar))
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("exec(self) failed: %v", err)
    	}
    	outs := string(out)
    	if !filepath.IsAbs(outs) {
    		t.Fatalf("Child returned %q, want an absolute path", out)
    	}
    	if !sameFile(outs, ep) {
    		t.Fatalf("Child returned %q, not the same file as %q", out, ep)
    	}
    }
    
    func sameFile(fn1, fn2 string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/BUILD

    )
    
    [[
        genrule(
            name = "gen_" + config_file,
            testonly = 1,
            srcs = [template_file],
            outs = [config_file],
            cmd = ("sed " + sed_replace + " " +
                   "$(location " + template_file + ") " +
                   "> $(OUTS)"),
            tags = ["manual"],
        ),
        tf_library(
            name = bench_name,
            testonly = 1,
            config = config_file,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    			mustRun(t, cmd)
    
    			cmd = hangProneCmd(outPath)
    			cmd.Dir = dir.Base()
    			outb, err := cmd.CombinedOutput()
    			out := string(outb)
    			if err == nil {
    				t.Fatalf("fuzzing succeeded unexpectedly; output:\n%s", out)
    			}
    			if !strings.Contains(out, tc.expectedError) {
    				t.Errorf("exited without expected error %q; got\n%s", tc.expectedError, out)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/cleanup.sh

    ret=$?
    function cleanup() {
      rm -f "${OUTPUT}"
    }
    
    trap cleanup EXIT
    
    if [[ ${ret} -eq 0 ]];then
      cat "${OUTPUT}"
    else
      # ignore NotFound errors
      OUT2=$(grep -v NotFound "${OUTPUT}")
      if [[ -n ${OUT2} ]];then
        cat "${OUTPUT}"
        exit ${ret}
      fi
    fi
    
    # wait for 30 sec for bookinfo to clean up
    sleep 30
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/build_defs.bzl

            srcs_version = "PY3",
            python_version = "PY3",
            deps = py_deps,
        )
    
        registered_op = "registered_" + name
        native.genrule(
            name = registered_op,
            srcs = [],
            outs = [name + ".inc.cc"],
            cmd = "$(location %s) --output=$@ --gen_register_op=true" % gen_op_lib_exec,
            tools = [":" + gen_op_lib_exec],
            tags = tags,
        )
    
        native.cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcs/vcs.go

    			}
    		}
    	}
    
    	outb, err = vcsBzr.runOutputVerboseOnly(rootDir, "status")
    	if err != nil {
    		return Status{}, err
    	}
    
    	// Skip warning when working directory is set to an older revision.
    	if bytes.HasPrefix(outb, []byte("working tree is out of date")) {
    		i := bytes.IndexByte(outb, '\n')
    		if i < 0 {
    			i = len(outb)
    		}
    		outb = outb[:i]
    	}
    	uncommitted := len(outb) > 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/stackcheck_test.go

    	stanza := regexp.MustCompile(`^(.*): nosplit stack over \d+ byte limit\n(.*\n(?: .*\n)*)`)
    	// Strip comments from cmd/go
    	out = regexp.MustCompile(`(?m)^#.*\n`).ReplaceAllString(out, "")
    	for len(out) > 0 {
    		m := stanza.FindStringSubmatch(out)
    		if m == nil {
    			t.Fatalf("unexpected output:\n%s", out)
    		}
    		out = out[len(m[0]):]
    		fn := m[1]
    		got := m[2]
    
    		want, ok := wantMap[fn]
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_tpu_ops.td

    }
    
    def GetTpuHostDeviceOp : TensorflowMlrtTpu_Op<"get_tpu_host_device", [Pure]> {
      let summary = "get the tpu host allocator that implements tensorflow::Device";
    
      let results = (outs
        TFDeviceType:$device
      );
    
      let assemblyFormat = "attr-dict";
    }
    
    def CompileAndExecuteOp : TensorflowMlrtTpu_Op<"compile_and_execute"> {
      let summary = "tpu compile and execute operation";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

        DefaultValuedOptionalAttr<I64Attr, "-128">:$output_quantization_min_val,
        DefaultValuedOptionalAttr<I64Attr, "127">:$output_quantization_max_val
      );
    
      let results = (outs
        TensorOf<[TF_Qint32]>:$output
      );
    
      TF_DerivedOperandTypeAttr LhsT = TF_DerivedOperandTypeAttr<0>;
      TF_DerivedOperandTypeAttr RhsT = TF_DerivedOperandTypeAttr<1>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top