File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 77
77
python setup.py develop
78
78
displayName: 'Install package & ...'
79
79
80
- - bash : |
81
- set -ex
82
- bash .azure/sanity-check.sh
80
+ - bash : bash .azure/sanity-check.sh
83
81
displayName : ' Sanity check / details'
84
82
85
83
- bash : |
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ set -ex
3
4
pip list
4
5
python -c " import torch ; assert torch.cuda.is_available(), 'missing GPU support!'"
5
6
python -c " import torch ; v = torch.__version__ ; assert str(v).startswith('2'), v"
6
- python -c " from thunder.executors.utils import nvfuser_available ; assert nvfuser_available(), 'nvFuser is missing!'"
7
+ python -c " from thunder.executors import nvfuser_available ; assert nvfuser_available(), 'nvFuser is missing!'"
7
8
python -c " from thunder.executors.triton_utils import triton_version ; assert triton_version() is not None, 'triton is missing!'"
You can’t perform that action at this time.
0 commit comments