Skip to content

Commit

Permalink
Bump IREE to 20231026.688 (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
stellaraccident authored Oct 27, 2023
1 parent 1312259 commit 58f8459
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
- name: Sync source deps
run: |
python -m pip install --upgrade pip
# Note: We install in three steps in order to satisfy requirements
# from non default locations first. Installing the PyTorch CPU
# wheels saves multiple minutes and a lot of bandwidth on runner setup.
pip install --index-url https://download.pytorch.org/whl/cpu \
-r pytorch-cpu-requirements.txt \
-r torchvision-requirements.txt
pip install --upgrade -r requirements.txt
pip install -e .[testing]
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
-r pytorch-cpu-requirements.txt
-r torchvision-requirements.txt

iree-compiler==20231025.687
iree-runtime==20231025.687
iree-compiler==20231026.688
iree-runtime==20231026.688
2 changes: 0 additions & 2 deletions tests/transforms/quantization/mm_group_quant_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ def setUp(self):
Path(__file__).resolve().parent / "mm_f32_to_int4.mlir"
).read_text()

# Requires IREE bump.
@unittest.expectedFailure
def testBasic(self):
with Context() as context:
module_op = Operation.parse(self.MM_F32_TO_INT4_CONTENTS)
Expand Down

0 comments on commit 58f8459

Please sign in to comment.