Home
last modified time | relevance | path

Searched refs:compiler_name (Results 1 – 23 of 23) sorted by relevance

/aosp_15_r20/external/pytorch/torch/_dynamo/repro/
H A Dafter_dynamo.py61 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 Dafter_aot.py59 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/
Dunixccompiler.py213 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/
Dunixccompiler.py262 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/
Dmethod_compile_stat.d100 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 Dportability_tests.bzl66 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/
Dperformance.cpp115 …t-longest")) + " matches (platform = " + platform_name() + ", compiler = " + compiler_name() + ")"; in test_match()
132 …-longest")) + " searches (platform = " + platform_name() + ", compiler = " + compiler_name() + ")"; in test_search()
Dperformance.hpp24 std::string compiler_name();
Dtable_helper.cpp365 std::string compiler_name() in compiler_name() function
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/distutils/
H A Dunixccompiler.py217 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/
Dunixccompiler.py217 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/
Dunixccompiler.py217 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/
Dunixccompiler.py217 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/
Dunixccompiler.py217 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/
Dunixccompiler.py217 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/
DCMakeDetermineCompiler.cmake89 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__.py2174 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/
Dbuild.rs25 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 Dcpp_extension.py394 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 Dcudagraphs.py202 compiler_name = "cudagraphs" variable in CudagraphsBackend
/aosp_15_r20/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_get.c1437 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 Deval_frame.py672 compiler_str = compiler_fn.compiler_name
/aosp_15_r20/external/pytorch/benchmarks/dynamo/
H A Dcommon.py1325 cls, output_directory: str, compiler_name: str, model_name: str
1331 compiler_name,