Skip to content

Commit 0a4c23e

Browse files
committed
more output for debugging
1 parent d908891 commit 0a4c23e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

iron/common/compilation/base.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,9 @@ def compile(self, graph):
427427

428428
for artifact in worklist:
429429
compile_cmd = [
430-
"python",
430+
sys.executable,
431431
str(self.aiecc_path),
432+
"-v",
432433
"--no-compile-host",
433434
"--no-xchesscc",
434435
"--no-xbridge",
@@ -471,8 +472,9 @@ def compile(self, graph):
471472
# Now we know for each mlir source if we need to generate an xclbin, an insts.bin or both for it
472473
for mlir_source in mlir_sources:
473474
compile_cmd = [
474-
"python",
475+
sys.executable,
475476
str(self.aiecc_path),
477+
"-v",
476478
"--no-compile-host",
477479
"--no-xchesscc",
478480
"--no-xbridge",

0 commit comments

Comments
 (0)