Searched defs:executable (Results 1 - 25 of 81) sorted by relevance

1234

/external/libmojo/base/files/
H A Dfile_util_android.cc12 bool GetShmemTempDir(bool executable, base::FilePath* path) { argument
/external/annotation-tools/scene-lib/test/annotations/tests/executable/
H A DClassToIndexDemo.java1 package annotations.tests.executable;
H A DExample.java1 package annotations.tests.executable;
H A DJavapDemo.java1 package annotations.tests.executable;
H A DRegurgitateDemo.java1 package annotations.tests.executable;
/external/python/cpython3/Lib/unittest/
H A D__main__.py7 # use executable without path, unquoted
9 # (if you have spaces in your executable you get what you deserve!)
10 executable = os.path.basename(sys.executable) variable
11 sys.argv[0] = executable + " -m unittest"
/external/autotest/client/site_tests/security_Libcontainer/
H A Dsecurity_Libcontainer.py16 executable = 'libcontainer_target_test' variable in class:security_Libcontainer
27 binpath = os.path.join(self.srcdir, self.executable)
/external/autotest/client/site_tests/security_SeccompSyscallFilters/
H A Dsecurity_SeccompSyscallFilters.py18 executable = 'seccomp_bpf_tests' variable in class:security_SeccompSyscallFilters
36 binpath = os.path.join(self.srcdir, self.executable)
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dcompilation_cache.cc28 std::unique_ptr<Executable> executable,
33 BuildKey(executable->entry_computation_handle(), module_config);
36 cache_.emplace(key, std::move(executable));
44 // executable which is in the cache because it may be in use.
45 executable.reset();
62 VLOG(2) << "hit executable with module config: "
27 Insert( std::unique_ptr<Executable> executable, const HloModuleConfig& module_config) argument
H A Dsource_map_util.cc47 Status InvalidParameterArgument(Executable* executable, int parameter_number, argument
51 if (executable != nullptr && executable->has_module()) {
52 const HloModule& module = executable->module();
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dsequential_thunk.cc28 const GpuExecutable& executable) {
30 TF_RETURN_IF_ERROR(thunk->Initialize(executable));
27 Initialize( const GpuExecutable& executable) argument
H A Dfor_thunk.cc33 tensorflow::Status ForThunk::Initialize(const GpuExecutable& executable) { argument
34 TF_RETURN_IF_ERROR(body_thunk_sequence_->Initialize(executable));
H A Dwhile_thunk.cc37 Status WhileThunk::Initialize(const GpuExecutable& executable) { argument
38 TF_RETURN_IF_ERROR(condition_thunk_sequence_->Initialize(executable));
39 TF_RETURN_IF_ERROR(body_thunk_sequence_->Initialize(executable));
H A Dconditional_thunk.cc38 Status ConditionalThunk::Initialize(const GpuExecutable& executable) { argument
39 TF_RETURN_IF_ERROR(true_thunk_.Initialize(executable));
40 TF_RETURN_IF_ERROR(false_thunk_.Initialize(executable));
H A Dgpu_executable.h24 #include "tensorflow/compiler/xla/service/executable.h"
86 const Status EqualOrFail(const Executable& executable) { argument
87 // TODO(b/62952745) Implement equality test on GPU executable.
88 return Unimplemented("Equality test on GPU executable is not implemented.");
/external/autotest/client/site_tests/kernel_PerfEventRename/
H A Dkernel_PerfEventRename.py28 executable = 'perf-rename-test' variable in class:kernel_PerfEventRename
33 utils.make(self.executable)
45 self.executable),
/external/autotest/client/site_tests/platform_TraceClockMonotonic/
H A Dplatform_TraceClockMonotonic.py21 executable = 'ftrace-clock-monotonic' variable in class:platform_TraceClockMonotonic
93 binpath = os.path.join(self.srcdir, self.executable)
/external/autotest/client/site_tests/security_SMMLocked/
H A Dsecurity_SMMLocked.py17 executable = 'smm' variable in class:security_SMMLocked
21 utils.make(self.executable)
41 r = utils.run("%s/%s" % (self.srcdir, self.executable),
/external/autotest/client/site_tests/security_mprotect/
H A Dsecurity_mprotect.py16 executable = 'prot_exec' variable in class:security_mprotect
21 utils.make(self.executable)
25 with tempfile.NamedTemporaryFile(prefix='%s-' % (self.executable),
29 r = utils.run("%s/%s %s" % (self.srcdir, self.executable,
/external/tensorflow/tensorflow/compiler/xla/client/
H A Dlocal_client.h27 #include "tensorflow/compiler/xla/service/executable.h"
54 // Return the options used to build the executable.
57 // Return the built executable.
58 Executable* executable() const { return executable_.get(); } function in class:xla::LocalExecutable
65 LocalExecutable(std::unique_ptr<Executable> executable, Backend* backend,
94 // The ordinal of the device which this executable was compiled for. The
95 // executable can run on all equivalent devices (as determined by
105 // Options used to build the executable.
119 // Build and return a LocalExecutable object. The executable is compiled using
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dhlo_metadata_test.cc50 std::unique_ptr<LocalExecutable> executable,
55 auto instruction = executable->executable()
76 std::unique_ptr<LocalExecutable> executable = local
79 auto instruction = executable->executable()
/external/autotest/client/site_tests/platform_CompressedSwap/
H A Dplatform_CompressedSwap.py18 executable = 'hog' variable in class:platform_CompressedSwap
25 utils.make(self.executable)
92 cmd = [ self.srcdir + '/' + self.executable, '50' ]
/external/clang/tools/clang-format/
H A Dclang-format.el38 (defcustom clang-format-executable
39 (or (executable-find "clang-format")
41 "Location of the clang-format executable.
43 A string containing the name or the full path of the executable."
125 (point-min) (point-max) clang-format-executable
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dcpu_executable.h28 #include "tensorflow/compiler/xla/service/executable.h"
74 const Status EqualOrFail(const Executable& executable) { argument
75 // TODO(b/62952745) Implement equality test on CPU executable.
76 return Unimplemented("Equality test on CPU executable is not implemented.");
H A Dparallel_cpu_executable.h28 #include "tensorflow/compiler/xla/service/executable.h"
86 const Status EqualOrFail(const Executable& executable) { argument
87 // TODO(b/62952745) Implement equality test on CPU parallel executable.
89 "Equality test on CPU parallel executable is not implemented.");

Completed in 689 milliseconds

1234