/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | hlo_metadata_test.cc | 51 auto executables, in TEST_F() 56 auto instruction = executables[0] in TEST_F() 75 auto executables, in TEST_F() 80 auto instruction = executables[0] in TEST_F()
|
D | collective_ops_test.cc | 348 std::vector<ExecutableInfo> executables; in XLA_TEST_F() local 351 executables.emplace_back(); in XLA_TEST_F() 352 auto& e = executables.back(); in XLA_TEST_F() 372 auto& e = executables[i]; in XLA_TEST_F() 392 executables[2].executable.reset(); in XLA_TEST_F() 397 executables[0].executable.reset(); in XLA_TEST_F() 401 executables[1].executable.reset(); in XLA_TEST_F()
|
D | local_client_test_base.cc | 197 auto executables, in ExecuteLocally() 199 TF_RET_CHECK(executables.size() == 1); in ExecuteLocally() 200 TF_ASSIGN_OR_RETURN(auto ret, executables[0]->Run(arguments, run_options)); in ExecuteLocally()
|
D | local_client_execute_test.cc | 764 auto executables, in XLA_TEST_F() 767 EXPECT_EQ(1, executables.size()); in XLA_TEST_F() 772 executables[0] in XLA_TEST_F() 803 auto executables, in XLA_TEST_F() 806 EXPECT_EQ(2, executables.size()); in XLA_TEST_F() 823 auto executables, in XLA_TEST_F() 826 EXPECT_EQ(1, executables.size()); in XLA_TEST_F() 828 EXPECT_GT(executables.front()->executable()->SizeOfGeneratedCodeInBytes(), in XLA_TEST_F() 979 auto executables, client->Compile(computation, {&buffer.on_host_shape()}, in BM_LocalClientOverhead() 981 std::unique_ptr<LocalExecutable> executable = std::move(executables[0]); in BM_LocalClientOverhead()
|
D | multiple_devices_on_host_test.cc | 69 auto executables, in TestWithDeviceCount() 71 std::unique_ptr<LocalExecutable> executable = std::move(executables[0]); in TestWithDeviceCount()
|
/external/tensorflow/tensorflow/compiler/xla/tools/ |
D | replay_computation.cc | 129 auto executables, in CompileExecutable() 131 TF_RET_CHECK(executables.size() == 1); in CompileExecutable() 132 return std::move(executables[0]); in CompileExecutable() 452 std::vector<StatusOr<std::unique_ptr<LocalExecutable>>> executables; in RealMain() local 461 executables.resize(snapshots.size()); in RealMain() 463 thread_pool.Schedule([&snapshots, &executables, client, i] { in RealMain() 464 executables[i] = CompileExecutable(snapshots[i], client); in RealMain() 470 for (int64 i = 0; i < executables.size(); ++i) { in RealMain() 471 if (!executables[i].ok()) { in RealMain() 472 LOG(ERROR) << "Compilation failed: " << executables[i].status() << ": " in RealMain() [all …]
|
D | dumped_computation_to_operation_list.cc | 88 auto executables = in RealMain() local 91 CHECK_EQ(executables.size(), 1); in RealMain() 92 const HloModule& module = executables[0]->module(); in RealMain()
|
D | dumped_computation_to_text.cc | 65 auto executables = in RealMain() local 68 CHECK_EQ(executables.size(), 1); in RealMain() 69 const HloModule& module = executables[0]->module(); in RealMain()
|
/external/pigweed/pw_target_runner/ |
D | docs.rst | 6 The target runner module implements a gRPC server designed to run executables 7 in parallel. These executables may be run directly on the host, or flashed to 13 executables among a pool of workers that run in parallel. This allows things 17 Additionally, the server allows many executables to be queued up at once and 25 some custom workers for the desired target to run passed executables.
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | service.cc | 317 std::vector<std::unique_ptr<Executable>> executables; in BuildExecutables() local 319 TF_ASSIGN_OR_RETURN(executables, backend->compiler()->Compile( in BuildExecutables() 328 executables.push_back(std::move(executable)); in BuildExecutables() 336 executables[i]->set_hlo_proto(std::move(hlo_protos[i])); in BuildExecutables() 340 return std::move(executables); in BuildExecutables() 345 absl::Span<Executable* const> executables, in ExecuteParallelAndRegisterResult() argument 363 executables.size()); in ExecuteParallelAndRegisterResult() 364 for (int64 i = 0; i < executables.size(); i++) { in ExecuteParallelAndRegisterResult() 372 for (int64 i = 0, end = executables.size(); i < end; i++) { in ExecuteParallelAndRegisterResult() 392 executables[i]->module_config().debug_options().xla_hlo_profile() && in ExecuteParallelAndRegisterResult() [all …]
|
D | local_service.cc | 170 std::vector<std::unique_ptr<Executable>> executables; in CompileExecutables() local 171 executables.push_back(std::move(executable)); in CompileExecutables() 172 return executables; in CompileExecutables()
|
/external/python/cpython3/Lib/test/ziptestdata/ |
D | README.md | 3 The test executables in this directory are created manually from header.sh and 13 ## Updating the test executables
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_ccompiler.py | 29 executables = {'compiler': '', 'compiler_cxx': '', 'linker': ''} variable in CCompilerTestCase.test_set_executables.MyCCompiler 65 executables = {} variable in CCompilerTestCase.test_debug_print.MyCCompiler
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | xla_jit_compiled_cpu_function.cc | 120 TF_ASSIGN_OR_RETURN(auto executables, in Compile() 122 TF_RET_CHECK(executables.size() == 1); in Compile() 123 std::unique_ptr<xla::LocalExecutable> executable = std::move(executables[0]); in Compile()
|
/external/brotli/ |
D | configure-cmake | 111 --bindir=DIR user executables [PREFIX/bin] 112 --sbindir=DIR system admin executables [PREFIX/sbin] 113 --libexecdir=DIR program executables [PREFIX/libexec]
|
/external/python/cpython3/Programs/ |
D | README | 1 Source files for binary executables (as opposed to shared modules)
|
/external/tensorflow/tensorflow/compiler/xrt/kernels/ |
D | xrt_compile_ops.cc | 180 auto executables, in Compile() 182 TF_RET_CHECK(executables.size() == 1); in Compile() 183 *program = std::move(executables[0]); in Compile()
|
/external/adhd/sound_card_init/ |
D | .gitignore | 2 # will have compiled files and executables
|
/external/parameter-framework/upstream/ctest/ |
D | CMakeLists.txt | 50 # Set environement variables so that executables and libraries can be find by tests. 74 # With nmake and nmake, executables are built in: 79 # build systems build executables in:
|
/external/protobuf/examples/ |
D | README.md | 50 will create two executables: add_person_cpp and list_people_cpp. These programs 74 build two executables (shell scripts actually): add_person_python and 75 list_people_python. They work the same way as the C++ executables. 89 This will create the add_person_java/list_people_java executables (shell
|
/external/rust/crates/weak-table/ |
D | .gitignore | 2 # will have compiled files and executables
|
/external/grpc-grpc/src/ruby/tools/ |
D | README.md | 5 …ng directories should be filled with the corresponding `protoc` and `grpc_ruby_plugin` executables.
|
/external/libyuv/files/tools_libyuv/valgrind/ |
D | libyuv_tests.bat | 49 echo "Can't find Dr. Memory executables." 65 echo "Can't find ThreadSanitizer executables."
|
/external/grpc-grpc/test/distrib/ruby/ |
D | distribtest.gemspec | 13 s.executables = ['distribtest.rb']
|
/external/rust/crates/grpcio-sys/grpc/test/distrib/ruby/ |
D | distribtest.gemspec | 13 s.executables = ['distribtest.rb']
|