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

Bump iree-requirements-ci.txt to the latest stable release. #254

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
15 changes: 9 additions & 6 deletions iree-requirements-ci.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Meant for CI jobs. We want to pin to a specific nightly version.
# A normal user is supposed to install from iree-requirements.txt where we are
# more forgiving on the exact version.
# Requirements for CI jobs.
#
# Developer may want to install from iree-requirements.txt where we are more
# forgiving on the exact version.

--find-links https://iree.dev/pip-release-links.html
iree-compiler==20240918.1020
iree_runtime==20240918.1020
# Uncomment to select a nightly version.
# --find-links https://iree.dev/pip-release-links.html

iree-compiler==20241104.1068
iree_runtime==20241104.1068
2 changes: 1 addition & 1 deletion iree/turbine/kernel/wave/codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ def handle_scheduling_group_barrier(emitter: WaveEmitter, node: fx.Node):
mask = arith_d.constant(IntegerType.get_signless(32), mask)
counts = arith_d.constant(IntegerType.get_signless(32), counts)
llvm_d.call_intrinsic(
None, "llvm.amdgcn.sched.group.barrier", [mask, counts, sync_id]
None, "llvm.amdgcn.sched.group.barrier", [mask, counts, sync_id], [], []
)


Expand Down
Loading