Home
last modified time | relevance | path

Searched refs:binary_path (Results 1 – 25 of 58) sorted by relevance

123

/external/tensorflow/tensorflow/compiler/xla/stream_executor/gpu/
Dasm_compiler.cc41 const std::string& binary_path) { in GetPtxasVersionString() argument
47 auto it = seen_binary_paths->find(binary_path); in GetPtxasVersionString()
54 binary.SetProgram(binary_path, {binary_path, "--version"}); in GetPtxasVersionString()
58 absl::StrFormat("Couldn't invoke %s --version", binary_path)); in GetPtxasVersionString()
66 "Running %s --version returned %d", binary_path, exit_code)); in GetPtxasVersionString()
68 auto emplace_it = seen_binary_paths->emplace(binary_path, std::move(out)); in GetPtxasVersionString()
198 std::string binary_path; in FindCudaExecutable() local
201 binary_path = tensorflow::io::JoinPath(cuda_root, "bin", binary_filename); in FindCudaExecutable()
202 VLOG(2) << "Looking for " << binary_filename << " at " << binary_path; in FindCudaExecutable()
203 if (env->FileExists(binary_path).ok() && in FindCudaExecutable()
[all …]
/external/perfetto/tools/
Dsize-report83 binary_path = os.path.join(out_directory, binary)
84 output = '{} - {}\n'.format(binary, binary_path)
86 subprocess.check_output(['dsymutil', binary_path])
88 binary_path, binary)
89 cmd = [symbols, '-d', 'compileunits', '-n', '100', binary_path]
91 cmd = ['-d', 'compileunits', '-n', '100', binary_path]
Dheap_profile746 binary_path = os.getenv('PERFETTO_BINARY_PATH')
754 if binary_path is None:
755 binary_path = product_out_symbols
757 binary_path += ":" + product_out_symbols
762 if binary_path is not None:
769 os.environ, PERFETTO_BINARY_PATH=binary_path),
/external/OpenCL-CTS/scripts/
Dtest_opencl_cts.py43 def get_all_subtests(binary_path: str) -> List[str]:
62 def get_subtests(binary_path: str, subtests: List[str]) -> List[str]:
63 all_subtests = set(get_all_subtests(binary_path))
80 def __init__(self, test_name: str, binary_path: str, args: List[str]):
83 self._binary_path = binary_path
122 subtests = get_subtests(args.binary_path, args.subtests)
124 suite.addTest(OpenCLTest(subtest, args.binary_path, args.test_args))
/external/grpc-grpc/test/cpp/interop/
Dinterop_test.cc50 char* binary_path; in test_client() local
52 gpr_asprintf(&binary_path, "%s/interop_client", root); in test_client()
55 execl(binary_path, binary_path, port_arg, NULL); in test_client()
57 gpr_free(binary_path); in test_client()
/external/autotest/client/cros/
Dchrome_binary_test.py115 binary_path = self.get_chrome_binary_path(binary_to_run)
121 cmd = ' '.join([env_vars, prefix, binary_path, extra_params])
133 file_utils.recursive_path_permission(binary_path))
135 (binary_path, path_permission))
137 fail_reason = ('Command not found: %s' % binary_path)
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_testlib.cc34 Status TestCluster::MakeTestCluster(const string& binary_path, in MakeTestCluster() argument
63 if (!options.env->FileExists(binary_path).ok()) { in MakeTestCluster()
67 {binary_path, /* see grpc_testlib_server.cc for flags */ in MakeTestCluster()
/external/angle/scripts/
Dupdate_chrome_angle.py56 binary_path = os.path.join(path, binary_name) variable
57 if os.path.exists(binary_path):
58 binary_mtime = os.path.getmtime(binary_path)
Dperf_test_runner.py116 binary_path = os.path.join(base_path, path, args.suite)
117 if os.path.exists(binary_path):
118 binary_mtime = os.path.getmtime(binary_path)
120 newest_binary = binary_path
/external/strace/
Dmmap_cache.c131 char binary_path[sizeof(buffer)]; in mmap_cache_rebuild_if_invalid() local
138 binary_path) != 10) in mmap_cache_rebuild_if_invalid()
173 filename, binary_path, start_addr, in mmap_cache_rebuild_if_invalid()
197 entry->binary_filename = xstrdup(binary_path); in mmap_cache_rebuild_if_invalid()
/external/bcc/src/cc/api/
DBPF.cc257 StatusTuple BPF::attach_uprobe(const std::string& binary_path, in attach_uprobe() argument
272 TRY2(check_binary_symbol(binary_path, symbol, symbol_addr, module, offset, in attach_uprobe()
283 binary_path.c_str(), offset, pid, in attach_uprobe()
292 attach_type_debug(attach_type).c_str(), binary_path.c_str(), in attach_uprobe()
509 StatusTuple BPF::detach_uprobe(const std::string& binary_path, in detach_uprobe() argument
515 TRY2(check_binary_symbol(binary_path, symbol, symbol_addr, module, offset, in detach_uprobe()
523 binary_path.c_str(), symbol.c_str(), symbol_addr); in detach_uprobe()
760 StatusTuple BPF::check_binary_symbol(const std::string& binary_path, in check_binary_symbol() argument
767 int res = bcc_resolve_symname(binary_path.c_str(), symbol.c_str(), in check_binary_symbol()
772 binary_path.c_str(), symbol.c_str(), symbol_addr); in check_binary_symbol()
[all …]
DBPF.h75 StatusTuple attach_uprobe(const std::string& binary_path,
83 StatusTuple detach_uprobe(const std::string& binary_path,
280 std::string get_uprobe_event(const std::string& binary_path, uint64_t offset,
322 StatusTuple check_binary_symbol(const std::string& binary_path,
354 USDT(const std::string& binary_path, const std::string& provider,
358 USDT(const std::string& binary_path, pid_t pid, const std::string& provider,
363 const std::string &binary_path() const { return binary_path_; } in binary_path() function
/external/cronet/build/config/fuchsia/
Dbuild_symbol_archive.py30 build_id, binary_path = line.strip().split(' ')
38 os.path.join(os.path.dirname(ids_txt), binary_path))
/external/angle/build/config/fuchsia/
Dbuild_symbol_archive.py30 build_id, binary_path = line.strip().split(' ')
38 os.path.join(os.path.dirname(ids_txt), binary_path))
/external/perfetto/python/tools/
Dheap_profile.py483 binary_path = os.getenv('PERFETTO_BINARY_PATH')
491 if binary_path is None:
492 binary_path = product_out_symbols
494 binary_path += ":" + product_out_symbols
499 if binary_path is not None:
506 os.environ, PERFETTO_BINARY_PATH=binary_path),
Dcpu_profile.py428 binary_path = os.getenv('PERFETTO_BINARY_PATH')
432 if binary_path is not None:
438 PERFETTO_BINARY_PATH=binary_path),
/external/angle/build/android/pylib/utils/
Dlogdog_helper.py61 def binary(name, binary_path): argument
73 with open(binary_path, 'r') as f:
/external/cronet/build/android/pylib/utils/
Dlogdog_helper.py61 def binary(name, binary_path): argument
73 with open(binary_path, 'r') as f:
/external/crosvm/tools/
Dnextest_package71 def process_binary(binary_path: Path):
72 source_path = target_dir / binary_path
73 destination_path = binary_path
Dbuild_release38 binary_path: Path
188 result[exe.cargo_target] = str(exe.binary_path)
/external/crosvm/infra/recipes/
Dbuild_linux.py42 for target_name, binary_path in release_build_result_dict.items():
52 binary_path,
/external/autotest/client/site_tests/camera_HAL3Perf/
Dcamera_HAL3Perf.py90 binary_path = os.path.join(self.dep_dir, 'bin', self.test_binary)
97 binary_path,
/external/pdfium/testing/tools/coverage/
Dcoverage_report.py167 binary_path = os.path.join(testing_tools_directory, test_spec.binary)
171 binary_path = os.path.join(self.build_directory, test_spec.binary)
173 coverage_tests[name] = TestSpec(binary_path, test_spec.use_test_runner,
/external/igt-gpu-tools/gtests/include/
Dgtest_helper.h5 static const char* binary_path = "/data/igt_tests"; variable
/external/igt-gpu-tools/gtests/src/
Dgtest_gem_blt.cpp10 void SetUp() override { chdir(binary_path); } in SetUp()

123