We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7858466 commit 59bdfe0Copy full SHA for 59bdfe0
scripts/test-triton.sh
@@ -316,8 +316,13 @@ run_inductor_tests() {
316
test -d pytorch || {
317
git clone https://github.com/pytorch/pytorch
318
cd pytorch
319
+
320
TRANSFORMERS_VERSION=$(cat .ci/docker/ci_commit_pins/huggingface.txt)
- pip install transformers==$TRANSFORMERS_VERSION
321
+ git clone --recursive https://github.com/huggingface/transformers
322
+ cd transformers
323
+ git checkout $TRANSFORMERS_VERSION
324
+ python setup.py bdist_wheel
325
+ pip install dist/*.whl
326
python -c "import transformers; print(transformers.__version__)"
327
}
328
0 commit comments