File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -163,12 +163,8 @@ jobs:
163163 echo TRITON_TEST_CMD="bash -v -x scripts/test-triton.sh --warning-reports --skip-pytorch-install --reports-dir $GITHUB_WORKSPACE/reports ${{ inputs.ignore_errors && '--ignore-errors' || '' }} $skiplist"
164164 } | tee -a $GITHUB_ENV
165165
166- - name : Run inductor test
167- run : |
168- #FIXME move back test when ready
169- ${{ env.TRITON_TEST_CMD }} --inductor #--skip-pip-install
170-
171166 - name : Run unit tests
167+ if : inputs.env_manager == 'base'
172168 run : |
173169 ${{ env.TRITON_TEST_CMD }} --unit
174170
@@ -185,6 +181,7 @@ jobs:
185181 ${{ env.TRITON_TEST_CMD }} --tutorial --skip-pip-install
186182
187183 - name : Run instrumentation tests
184+ if : inputs.env_manager == 'base'
188185 run : |
189186 ${{ env.TRITON_TEST_CMD }} --instrumentation --skip-pip-install
190187
@@ -204,6 +201,10 @@ jobs:
204201 ref : ${{ env.TRANSFORMERS_VERSION }}
205202 try-tag-prefix : v
206203
204+ - name : Run inductor test
205+ run : |
206+ ${{ env.TRITON_TEST_CMD }} --inductor --skip-pip-install
207+
207208 - name : Save pip cache
208209 if : (inputs.env_manager == 'base') && (steps.pip-cache.outputs.status == 'miss')
209210 uses : ./.github/actions/save
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33install_env () {
4- set -vx
54 export PATH=" $HOME /miniforge3/bin:$PATH "
65 conda create -n triton --override-channels -c conda-forge python=$python_version .*
76 conda env update -f scripts/triton.yml
You can’t perform that action at this time.
0 commit comments