Home
last modified time | relevance | path

Searched refs:debug_compile (Results 1 – 8 of 8) sorted by relevance

/external/pytorch/functorch/compile/
D__init__.py15 debug_compile,
/external/pytorch/functorch/notebooks/
Dminifier.ipynb241 …d in the graph. To resolve this, we have another \"compiler\" called `debug_compile`. It simply pr…
287 "from functorch.compile import memory_efficient_fusion, debug_compile\n",
289 "memory_efficient_fusion(foo, bw_compiler=debug_compile)(inp)\n"
/external/pytorch/torch/_functorch/
Dcompilers.py275 def debug_compile(fx_g, inps): function
/external/pytorch/torch/_inductor/
Dconfig.py973 debug_compile = os.environ.get("AOT_INDUCTOR_DEBUG_COMPILE", "0") == "1" variable in aot_inductor
Dcpp_builder.py514 cflags = ["O0", "g"] if config.aot_inductor.debug_compile else ["O3", "DNDEBUG"]
Dcodecache.py1563 base_flags = "-O0 -g" if config.aot_inductor.debug_compile else "-O3 -DNDEBUG"
/external/pytorch/test/dynamo/
Dtest_modules.py2689 def debug_compile(gm, *args, **kwargs): function
2694 @torch.compile(backend=debug_compile)
/external/pytorch/torch/_inductor/codegen/
Dcpp_wrapper_cpu.py455 if config.aot_inductor.debug_compile and config.abi_compatible: