HomeSort by relevance Sort by last modified time
    Searched defs:executable (Results 26 - 50 of 344) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/compiler/xla/client/
local_client.h 27 #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
100 std::unique_ptr<Executable> executable_
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/interpreter/
compiler.cc 32 #include "tensorflow/compiler/xla/service/interpreter/executable.h"
64 StatusOr<std::unique_ptr<Executable>> InterpreterCompiler::RunBackend(
75 // Create executable from only the Hlo module.
76 std::unique_ptr<Executable> executable = local
79 return std::move(executable);
82 StatusOr<std::vector<std::unique_ptr<Executable>>> InterpreterCompiler::Compile(
  /external/tensorflow/tensorflow/compiler/xla/tests/
hlo_metadata_test.cc 50 std::unique_ptr<LocalExecutable> executable,
55 auto instruction = executable->executable()
76 std::unique_ptr<LocalExecutable> executable = local
79 auto instruction = executable->executable()
  /system/extras/simpleperf/
environment.h 55 bool executable; member in struct:ThreadMmap
  /build/make/core/combo/
HOST_darwin-x86.mk 49 define transform-host-o-to-executable-inner
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
CGIHTTPServer.py 96 """Test whether argument path is an executable file."""
97 return executable(path)
152 self.send_error(403, "CGI script is not executable (%r)" %
261 interp = sys.executable
359 def executable(path): function
360 """Test for executable file."""
  /external/annotation-tools/scene-lib/test/annotations/tests/executable/
Example.java 1 package annotations.tests.executable;
  /external/clang/tools/clang-format/
clang-format.el 38 (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/elfutils/libdwfl/
dwfl_build_id_find_elf.c 147 /* When dwfl_core_file_report was called with a non-NULL executable file
149 recorded executable file when MOD was identified as main executable
150 (which then triggers opening and reporting of the executable). */
151 const char *executable = mod->dwfl->user_core->executable_for_core; local
152 int fd = open (executable, O_RDONLY);
155 *file_name = strdup (executable);
  /external/python/cpython2/Lib/
CGIHTTPServer.py 98 """Test whether argument path is an executable file."""
99 return executable(path)
149 self.send_error(403, "CGI script is not executable (%r)" %
258 interp = sys.executable
363 def executable(path): function
364 """Test for executable file."""
  /external/tensorflow/tensorflow/compiler/xla/tools/
dumped_computation_to_operation_list.cc 91 StatusOr<std::unique_ptr<Executable>> executable = local
95 const HloModule& module = executable.ValueOrDie()->module();
dumped_computation_to_text.cc 67 StatusOr<std::unique_ptr<Executable>> executable = local
71 const HloModule& module = executable.ValueOrDie()->module();
  /external/v8/tools/
run-valgrind.py 32 # Uses valgrind from third_party/valgrind. Assumes the executable is passed
56 print 'Please provide an executable to analyze.'
59 executable = path.join(V8_ROOT, sys.argv[1]) variable
60 if not path.exists(executable):
61 print 'Cannot find the file specified: %s' % executable
65 command = VALGRIND_ARGUMENTS + [executable] + sys.argv[2:]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
CGIHTTPServer.py 98 """Test whether argument path is an executable file."""
99 return executable(path)
154 self.send_error(403, "CGI script is not executable (%r)" %
263 interp = sys.executable
363 def executable(path): function
364 """Test for executable file."""
  /prebuilts/gdb/linux-x86/lib/python2.7/
CGIHTTPServer.py 98 """Test whether argument path is an executable file."""
99 return executable(path)
154 self.send_error(403, "CGI script is not executable (%r)" %
263 interp = sys.executable
363 def executable(path): function
364 """Test for executable file."""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 98 """Test whether argument path is an executable file."""
99 return executable(path)
154 self.send_error(403, "CGI script is not executable (%r)" %
263 interp = sys.executable
363 def executable(path): function
364 """Test for executable file."""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 98 """Test whether argument path is an executable file."""
99 return executable(path)
154 self.send_error(403, "CGI script is not executable (%r)" %
263 interp = sys.executable
363 def executable(path): function
364 """Test for executable file."""
  /external/autotest/client/site_tests/platform_CompressedSwapPerf/
platform_CompressedSwapPerf.py 107 executable = 'hog' variable in class:platform_CompressedSwapPerf
126 utils.make(self.executable)
292 cmd = [ os.path.join(self.srcdir, self.executable) ]
  /frameworks/base/packages/SystemUI/scripts/
new_merge.py 14 def executable(path): function in function:which
18 if path and executable(program):
23 if executable(exe):
  /external/libchrome/base/memory/
shared_memory.h 58 // If true, mappings might need to be made executable later.
59 bool executable = false; member in struct:base::SharedMemoryCreateOptions
  /frameworks/base/tools/bit/
command.cpp 208 string executable = string(dir) + "/" + prog; local
209 if (stat(executable.c_str(), &st) == 0) {
210 execve(executable.c_str(), (char*const*)argv, (char*const*)envp);
  /libcore/ojluni/src/main/java/java/lang/reflect/
Parameter.java 50 private final Executable executable; field in class:Parameter
58 * absent, however, then {@code Executable} uses this constructor
63 * @param executable The executable which defines this parameter.
68 Executable executable,
72 this.executable = executable;
77 * Compares based on the executable and the index
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/share/clang/
clang-format.el 38 (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."
148 nil nil clang-format-executable
  /prebuilts/clang/host/darwin-x86/clang-4479392/share/clang/
clang-format.el 38 (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."
148 nil nil clang-format-executable
  /prebuilts/clang/host/darwin-x86/clang-4579689/share/clang/
clang-format.el 38 (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."
148 nil nil clang-format-executable

Completed in 926 milliseconds

12 3 4 5 6 7 8 91011>>