File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,24 @@ jobs:
32
32
gpu-arch-version : ${{ matrix.gpu-arch-version }}
33
33
submodules : recursive
34
34
script : |
35
+ echo "::group::Setup environment"
35
36
conda create -n venv python=${{ matrix.python-version }} -y
36
37
conda activate venv
37
38
python -m pip install --upgrade pip
39
+ echo "::endgroup::"
40
+
41
+ echo "::group::Install PyTorch"
38
42
pip install ${{ matrix.torch-spec }}
43
+ echo "::endgroup::"
44
+
45
+ echo "::group::Install Triton"
39
46
./.github/scripts/install_triton.sh
47
+ echo "::endgroup::"
48
+
49
+ echo "::group::Install requirements"
40
50
pip install -r requirements.txt
51
+ echo "::endgroup::"
52
+
53
+ echo "::group::Run tests"
41
54
python -m unittest discover -s test/ -p "*.py" -v -t .
55
+ echo "::endgroup::"
You can’t perform that action at this time.
0 commit comments