/aosp_15_r20/external/pytorch/torch/_dynamo/repro/ |
H A D | after_dynamo.py | 61 def __init__(self, unconfigured_compiler_fn, compiler_name: str) -> None: 64 self._compiler_name = compiler_name 68 self.__name__ = unconfigured_compiler_fn.compiler_name 115 dump_backend_state, compiler_name=self._compiler_name 134 def wrap_backend_debug(unconfigured_compiler_fn, compiler_name: str): 143 return WrapBackendDebug(unconfigured_compiler_fn, compiler_name) 154 compiler_name, argument 206 def dump_backend_repro_as_file(gm, args, compiler_name, check_accuracy=False): argument 222 gm, args, compiler_name, check_accuracy, save_dir=subdir 234 def dump_backend_state(gm, args, compiler_name, check_accuracy=False): argument [all …]
|
H A D | after_aot.py | 59 def wrap_compiler_debug(unconfigured_compiler_fn, compiler_name: str): 94 compiler_name, 100 compiler_name, 135 fx.GraphModule(gm, orig_graph), real_inputs, compiler_name 139 if compiler_name != "inductor": 184 compiler_name, 190 compiler_name, 261 compiler_name, argument 287 accuracy = "_accuracy" in compiler_name 305 def dump_compiler_graph_state(gm, args, compiler_name, *, accuracy=None): argument [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/distutils/ |
D | unixccompiler.py | 213 def _is_gcc(self, compiler_name): argument 214 return "gcc" in compiler_name or "g++" in compiler_name
|
/aosp_15_r20/external/python/setuptools/setuptools/_distutils/ |
D | unixccompiler.py | 262 def _is_gcc(self, compiler_name): argument 263 return "gcc" in compiler_name or "g++" in compiler_name
|
/aosp_15_r20/prebuilts/jdk/jdk8/darwin-x86/sample/dtrace/hotspot/ |
D | method_compile_stat.d | 100 compiler_name = (string) self->str_ptr; 141 compiler_name = (string) self->str_ptr;
|
/aosp_15_r20/external/grpc-grpc/tools/bazelify_tests/test/ |
H A D | portability_tests.bzl | 66 for compiler_name, args, docker_image_version in compiler_configs: 67 … test_name = "runtests_%s_linux_dbg_%s_build_only" % (_safe_language_name(language), compiler_name)
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/performance/ |
D | performance.cpp | 115 …t-longest")) + " matches (platform = " + platform_name() + ", compiler = " + compiler_name() + ")"; in test_match() 132 …-longest")) + " searches (platform = " + platform_name() + ", compiler = " + compiler_name() + ")"; in test_search()
|
D | performance.hpp | 24 std::string compiler_name();
|
D | table_helper.cpp | 365 std::string compiler_name() in compiler_name() function
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/distutils/ |
H A D | unixccompiler.py | 217 def _is_gcc(self, compiler_name): argument 219 return any(name in compiler_name for name in ("gcc", "g++", "clang"))
|
/aosp_15_r20/external/python/cpython3/Lib/distutils/ |
D | unixccompiler.py | 217 def _is_gcc(self, compiler_name): argument 219 return any(name in compiler_name for name in ("gcc", "g++", "clang"))
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/distutils/ |
D | unixccompiler.py | 217 def _is_gcc(self, compiler_name): argument 219 return any(name in compiler_name for name in ("gcc", "g++", "clang"))
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/distutils/ |
D | unixccompiler.py | 217 def _is_gcc(self, compiler_name): argument 219 return any(name in compiler_name for name in ("gcc", "g++", "clang"))
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/distutils/ |
D | unixccompiler.py | 217 def _is_gcc(self, compiler_name): argument 219 return any(name in compiler_name for name in ("gcc", "g++", "clang"))
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/distutils/ |
D | unixccompiler.py | 217 def _is_gcc(self, compiler_name): argument 219 return any(name in compiler_name for name in ("gcc", "g++", "clang"))
|
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/ |
D | CMakeDetermineCompiler.cmake | 89 macro(_query_xcrun compiler_name result_var_keyword result_var) 93 execute_process(COMMAND xcrun --find ${compiler_name}
|
/aosp_15_r20/external/pytorch/torch/ |
H A D | __init__.py | 2174 compiler_name = "inductor" variable in _TorchCompileInductorWrapper 2256 self.compiler_name = backend 2258 self.compiler_name = backend.__name__ 2260 self.compiler_name = str(backend)
|
/aosp_15_r20/external/rust/crates/libsqlite3-sys/ |
D | build.rs | 25 fn is_compiler(compiler_name: &str) -> bool { in is_compiler() 26 env::var("CARGO_CFG_TARGET_ENV").map_or(false, |v| v == compiler_name) in is_compiler()
|
/aosp_15_r20/external/pytorch/torch/utils/ |
H A D | cpp_extension.py | 394 def _check_cuda_version(compiler_name: str, compiler_version: TorchVersion) -> None: 423 …cuda_compiler_bounds: VersionMap = CUDA_CLANG_VERSIONS if compiler_name.startswith('clang') else C… 506 compiler_name, compiler_version = self._check_abi() 520 _check_cuda_version(compiler_name, compiler_version)
|
/aosp_15_r20/external/pytorch/torch/_dynamo/backends/ |
H A D | cudagraphs.py | 202 compiler_name = "cudagraphs" variable in CudagraphsBackend
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_get.c | 1437 const char *compiler_name = in si_init_renderer_string() local 1444 "%s (radeonsi, %s%s, DRM %i.%i%s)", first_name, second_name, compiler_name, in si_init_renderer_string()
|
/aosp_15_r20/external/pytorch/torch/_dynamo/ |
H A D | eval_frame.py | 672 compiler_str = compiler_fn.compiler_name
|
/aosp_15_r20/external/pytorch/benchmarks/dynamo/ |
H A D | common.py | 1325 cls, output_directory: str, compiler_name: str, model_name: str 1331 compiler_name,
|