Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor chess interface #1775

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion python/compiler/aiecc/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,10 @@ async def chesshack(self, task, llvmir, aie_target):
await self.do_call(
task,
[
"chess-llvm-link",
# The path below is cheating a bit since it refers directly to the AIE1
# version of llvm-link, rather than calling the architecture-specific
# tool version.
opts.aietools_path + "/tps/lnx64/target/bin/LNa64bin/chess-llvm-link",
Comment on lines +448 to +451
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So it does not matter which version is used?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The different synopsys versions are currently pretty close to one another, and 'HEAD' is diverging relatively quickly... This is at some level kicking the can down the road, but it's better than what we have.

llvmir_chesshack,
chess_intrinsic_wrapper_ll_path,
"-S",
Expand Down
Loading