Skip to content

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
fifield committed Mar 5, 2025
1 parent f4d5dec commit 45d66bb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
27 changes: 14 additions & 13 deletions python/compiler/aiecc/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1170,19 +1170,20 @@ async def run_flow(self):
)

input_physical = self.prepend_tmp("input_physical.mlir")
processes = [self.do_call(
None,
[
"aie-opt",
"--aie-create-pathfinder-flows",
file_with_addresses,
"-o",
input_physical
]
)]
await asyncio.gather(
*processes
)
processes = [
self.do_call(
None,
[
"aie-opt",
"--aie-create-pathfinder-flows",
file_with_addresses,
"-o",
input_physical,
],
force=True,
)
]
await asyncio.gather(*processes)

if len(opts.host_args) > 0:
await self.process_host_cgen(aie_target, input_physical)
Expand Down
2 changes: 1 addition & 1 deletion test/aiecc/buffers_xclbin.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//
//===----------------------------------------------------------------------===//

// RUN: %python aiecc.py --no-compile --no-link --aie-generate-xclbin %s
// RUN: %python aiecc.py -n --no-compile --no-link --aie-generate-xclbin %s
// RUN: FileCheck %s --input-file=buffers_xclbin.mlir.prj/kernels.json

// CHECK: {
Expand Down

0 comments on commit 45d66bb

Please sign in to comment.