Skip to content

Commit cbd78f2

Browse files
committed
eager
1 parent b197b1b commit cbd78f2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.azure/gpu-tests-fabric.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ jobs:
8080
displayName: 'Adjust dependencies'
8181
8282
- bash: |
83-
pip install -e .[dev,strategies,examples] -U --find-links ${TORCH_URL}
83+
pip install -e .[dev,strategies,examples] \
84+
-U --upgrade-strategy=eager --find-links ${TORCH_URL}
8485
env:
8586
PACKAGE_NAME: "fabric"
8687
FREEZE_REQUIREMENTS: "1"

.azure/gpu-tests-pytorch.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ jobs:
9191
done
9292
displayName: 'Adjust dependencies'
9393
94-
- bash: pip install -e .[extra,test,examples] -U --find-links ${TORCH_URL}
94+
- bash: |
95+
pip install -e .[extra,test,examples] \
96+
-U --upgrade-strategy=eager --find-links ${TORCH_URL}
9597
env:
9698
PACKAGE_NAME: "pytorch"
9799
FREEZE_REQUIREMENTS: "1"

0 commit comments

Comments
 (0)