File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,13 +63,13 @@ jobs:
63
63
64
64
- script : |
65
65
pip install --upgrade pip
66
- pip install '.[extra,test]' cffi -U
66
+ pip install '.[extra,test]' "torch==${TORCH_VERSION}" cffi -U
67
67
displayName: "Install package & dependencies"
68
68
69
69
- script : |
70
70
set -e
71
71
pip uninstall -y torchvision torchaudio
72
- pip install '.[compiler]'
72
+ pip install '.[compiler,extra,test]' "torch==${TORCH_VERSION}"
73
73
python -c "from thunder.executors import nvfuser_available ; assert nvfuser_available(), 'nvFuser is missing!'"
74
74
python -c "from thunder.executors.triton_utils import triton_version ; assert triton_version() is not None, 'triton is missing!'"
75
75
condition: eq(variables['dependency'], 'compiler')
98
98
- bash : |
99
99
pip uninstall -y lightning-thunder
100
100
# install thunder from source, so that, thunder.tests will be available
101
- pip install -U "lightning-thunder[test] @ git+https://github.com/Lightning-AI/lightning-thunder.git"
101
+ pip install -U "lightning-thunder[test] @ git+https://github.com/Lightning-AI/lightning-thunder.git" "torch==${TORCH_VERSION}"
102
102
displayName: "Re-install Thunder [main branch]"
103
103
condition: eq(variables['dependency'], 'compiler')
104
104
You can’t perform that action at this time.
0 commit comments