We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4b74ac commit ff6b645Copy full SHA for ff6b645
2 files changed
tests/conftest.py
@@ -59,7 +59,7 @@ def set_mlir_filename(request):
59
if not option:
60
return
61
62
- import iree.turbine.kernel.wave.utils.run_utils as run_utils
+ import wave_lang.kernel.wave.utils.run_utils as run_utils
63
64
run_utils.dump_generated_mlir = True
65
run_utils.dump_generated_mlir_file = os.path.join(
wave_lang/kernel/wave/compile.py
@@ -282,9 +282,10 @@ def get_binary_path():
282
!= LocationCaptureLevel.NONE,
283
use_local_scope=options.use_local_scope,
284
)
285
+
286
if options.print_mlir:
287
if options.print_mlir_file:
- _write_file(options.print_mlir_file, "w", asm)
288
+ write_file(options.print_mlir_file, "w", asm)
289
else:
290
print(asm)
291
0 commit comments