Skip to content

Commit 18c2943

Browse files
Disable LLVM post processing
Signed-off-by: Whitney Tsang <[email protected]>
1 parent 744383a commit 18c2943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party/intel/backend/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def make_llir(src, metadata, options):
298298
paths = [path for (name, path) in options.extern_libs]
299299
llvm.link_extern_libs(llvm_mod, paths)
300300
intel.optimize_module(llvm_mod, llvm.OPTIMIZE_O3)
301-
if os.getenv("TRITON_INTEL_ENABLE_POST_PROCESS_LLIR", "1") == "1":
301+
if os.getenv("TRITON_INTEL_ENABLE_POST_PROCESS_LLIR", "0") == "1":
302302
intel.post_process_llir(llvm_mod)
303303

304304
# Get some metadata

0 commit comments

Comments
 (0)