Skip to content

Commit

Permalink
Revert latest change, try --upgrade in workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottTodd committed Nov 15, 2024
1 parent 4ffe7bd commit 56fa3a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# from non default locations first. Installing the PyTorch CPU
# wheels saves multiple minutes and a lot of bandwidth on runner setup.
pip install --no-compile -r pytorch-cpu-requirements.txt
pip install --no-cache-dir -r iree-requirements-ci.txt
pip install --no-cache-dir -r iree-requirements-ci.txt --upgrade
pip install -r requirements.txt -e .
- name: Run unit tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/perf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# from non default locations first. Installing the PyTorch CPU
# wheels saves multiple minutes and a lot of bandwidth on runner setup.
pip install --no-compile -r pytorch-cpu-requirements.txt
pip install --no-cache-dir -r iree-requirements-ci.txt
pip install --no-cache-dir -r iree-requirements-ci.txt --upgrade
pip install -r requirements.txt -e .
- name: Run e2e tests on MI300
Expand Down
2 changes: 1 addition & 1 deletion iree/turbine/kernel/compiler/dispatch_codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def abi_type(binding: BindingDesc):
def_func_op.attributes["translation_info"] = Attribute.parse(
f"#iree_codegen.translation_info<pipeline = None "
f"workgroup_size=[{','.join(str(x) for x in workgroup_size)}] "
f"subgroup_size={subgroup_size}, {{}}>"
f"subgroup_size={subgroup_size}>"
)

# Define the export.
Expand Down

0 comments on commit 56fa3a2

Please sign in to comment.