Skip to content

Commit 6645964

Browse files
committed
Revert "Disable LLVM post processing (#2626)"
This reverts commit eff7b30.
1 parent b58aaa8 commit 6645964

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party/intel/backend/compiler.py

+1-1
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", "0") == "1":
301+
if os.getenv("TRITON_INTEL_ENABLE_POST_PROCESS_LLIR", "1") == "1":
302302
intel.post_process_llir(llvm_mod)
303303

304304
# Get some metadata

0 commit comments

Comments
 (0)