Skip to content

Commit c2f1fca

Browse files
authored
UT: Pin peft to 0.10.0 (#1181)
## Describe your changes - The CI test on Windows fails occasionally during import of peft. At https://github.com/huggingface/peft/blob/e7b75070c72a88f0f7926cc6872858a2c5f0090d/src/peft/tuners/boft/layer.py#L30, the error is `OSError: [WinError 122] The data area passed to a system call is too small`. This code was added in huggingface/peft@8111699 which is part of peft version 0.11.0+. - Revert #1180 since more tests are affected by the same issue. Will just pin peft version to the previous stable version 0.10.0 until the issue is fully investigated and resolved. ## Checklist before requesting a review - [ ] Add unit tests for this change. - [ ] Make sure all tests can pass. - [ ] Update documents if necessary. - [ ] Lint and apply fixes to your code by running `lintrunner -a` - [ ] Is this a user-facing change? If yes, give a description of this change to be included in the release notes. - [ ] Is this PR including examples changes? If yes, please remember to update [example documentation](https://github.com/microsoft/Olive/blob/main/docs/source/examples.md) in a follow-up PR. ## (Optional) Issue link
1 parent 06b0f55 commit c2f1fca

File tree

2 files changed

+5
-15
lines changed

2 files changed

+5
-15
lines changed

test/requirements-test.txt

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ onnxruntime-extensions
2222
openvino==2023.2.0
2323
optimum>=1.17.0
2424
pandas
25-
peft
25+
# TODO(anyone): Unpin peft once the issue is resolved
26+
# occasional import error on Windows with peft 0.11.1
27+
peft==0.10.0
2628
plotly
2729
protobuf==3.20.3
2830
psutil

test/unit_test/passes/onnx/test_extract_adapters.py

+2-14
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
# Copyright (c) Microsoft Corporation. All rights reserved.
33
# Licensed under the MIT License.
44
# --------------------------------------------------------------------------
5-
import platform
65
from pathlib import Path
76

87
import numpy as np
98
import onnx
109
import pytest
1110
from onnxruntime.quantization.calibrate import CalibrationDataReader
11+
from peft import LoraConfig, get_peft_model
12+
from peft.tuners.lora import LoraLayer
1213
from transformers import AutoModelForCausalLM
1314

1415
from olive.common.utils import find_submodules
@@ -43,9 +44,6 @@ def get_calib_data_loader(dummy_input):
4344

4445
@pytest.fixture(name="input_model_info", scope="module")
4546
def input_model_info_fixture(tmp_path_factory):
46-
from peft import LoraConfig, get_peft_model
47-
from peft.tuners.lora import LoraLayer
48-
4947
# this tmp_path exists for the duration of the test session
5048
# module is scope is used to ensure that the fixture is only created once
5149
tmp_path = tmp_path_factory.mktemp("extract-adapters-test")
@@ -129,10 +127,6 @@ def input_model_info_fixture(tmp_path_factory):
129127
}
130128

131129

132-
# TODO(jambayk): re-enable this test once import issue is resolved
133-
@pytest.mark.skipif(
134-
platform.system() == "Windows", reason="Peft import sometimes fails on Windows after version 0.11.0"
135-
)
136130
@pytest.mark.parametrize("model_type", ["float", "qdq", "int4"])
137131
def test_extract_adapters_as_initializers(tmp_path, input_model_info, model_type):
138132
# setup
@@ -159,9 +153,6 @@ def test_extract_adapters_as_initializers(tmp_path, input_model_info, model_type
159153
assert seen_weights == expected_weights
160154

161155

162-
@pytest.mark.skipif(
163-
platform.system() == "Windows", reason="Peft import sometimes fails on Windows after version 0.11.0"
164-
)
165156
@pytest.mark.parametrize("model_type", ["float", "qdq", "int4"])
166157
@pytest.mark.parametrize("pack_inputs", [True, False])
167158
def test_extract_adapters_as_inputs(tmp_path, input_model_info, pack_inputs, model_type):
@@ -186,9 +177,6 @@ def test_extract_adapters_as_inputs(tmp_path, input_model_info, pack_inputs, mod
186177
assert all(i in io_config["input_names"] for i in expected_weights)
187178

188179

189-
@pytest.mark.skipif(
190-
platform.system() == "Windows", reason="Peft import sometimes fails on Windows after version 0.11.0"
191-
)
192180
@pytest.mark.parametrize("quantize_int4", [1, 0])
193181
@pytest.mark.parametrize("pack_weights", [True, False])
194182
def test_export_adapters_command(tmp_path, input_model_info, quantize_int4, pack_weights):

0 commit comments

Comments
 (0)