diff --git a/python/src/llvm.cc b/python/src/llvm.cc index efb5b5a9880c..f9b98a2540a2 100644 --- a/python/src/llvm.cc +++ b/python/src/llvm.cc @@ -346,7 +346,8 @@ void init_triton_llvm(py::module &&m) { // and break the lowering of some target specific intrinsics. std::unique_ptr targetMachine = nullptr; if (!arch.empty() && pluginFile.empty()) - targetMachine = createTargetMachine(mod, arch, enable_fp_fusion, features); + targetMachine = + createTargetMachine(mod, arch, enable_fp_fusion, features); PassBuilder pb(/*targetMachine=*/targetMachine.get(), tuningOptions, std::nullopt, instrCbPtr);