Skip to content

Commit ff6b645

Browse files
authored
[Wave] Fix rebase error (#57)
Fix rebase error in #46 after all the renamings. Signed-off-by: Ivan Butygin <ivan.butygin@gmail.com>
1 parent d4b74ac commit ff6b645

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def set_mlir_filename(request):
5959
if not option:
6060
return
6161

62-
import iree.turbine.kernel.wave.utils.run_utils as run_utils
62+
import wave_lang.kernel.wave.utils.run_utils as run_utils
6363

6464
run_utils.dump_generated_mlir = True
6565
run_utils.dump_generated_mlir_file = os.path.join(

wave_lang/kernel/wave/compile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,9 +282,10 @@ def get_binary_path():
282282
!= LocationCaptureLevel.NONE,
283283
use_local_scope=options.use_local_scope,
284284
)
285+
285286
if options.print_mlir:
286287
if options.print_mlir_file:
287-
_write_file(options.print_mlir_file, "w", asm)
288+
write_file(options.print_mlir_file, "w", asm)
288289
else:
289290
print(asm)
290291

0 commit comments

Comments
 (0)