@@ -152,57 +152,57 @@ jobs:
152152 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"
153153 } | tee -a $GITHUB_ENV
154154
155- - name : Run unit tests
156- run : |
157- ${{ env.TRITON_TEST_CMD }} --unit
155+ # - name: Run unit tests
156+ # run: |
157+ # ${{ env.TRITON_TEST_CMD }} --unit
158158
159159 - name : Run core tests
160160 run : |
161161 ${{ env.TRITON_TEST_CMD }} --core --skip-pip-install
162162
163- - name : Run interpreter tests
164- run : |
165- ${{ env.TRITON_TEST_CMD }} --interpreter --skip-pip-install
166-
167- - name : Run Tutorials
168- run : |
169- ${{ env.TRITON_TEST_CMD }} --tutorial --skip-pip-install
170-
171- - name : Run instrumentation tests
172- run : |
173- ${{ env.TRITON_TEST_CMD }} --instrumentation --skip-pip-install
174-
175- - name : Get transformers version
176- run : |
177- cd pytorch
178- TRANSFORMERS_VERSION="$(<.ci/docker/ci_commit_pins/huggingface.txt)"
179- echo "TRANSFORMERS_VERSION=$TRANSFORMERS_VERSION" | tee -a $GITHUB_ENV
180-
181- - name : Install transformers
182- uses : ./.github/actions/install-dependency
183- with :
184- package : transformers
185- repository : huggingface/transformers
186- ref : ${{ env.TRANSFORMERS_VERSION }}
187- try-tag-prefix : v
188-
189- - name : Run E2E test
190- run : |
191- ${{ env.TRITON_TEST_CMD }} --inductor --skip-pip-install
192-
193- - name : Save pip cache
194- if : ${{ steps.pip-cache.outputs.status == 'miss' }}
195- uses : ./.github/actions/save
196- with :
197- path : ${{ steps.pip-cache.outputs.path }}
198- dest : ${{ steps.pip-cache.outputs.dest }}
199-
200- - name : Pass rate
201- run : |
202- source ./scripts/capture-hw-details.sh
203- python scripts/pass_rate.py --reports reports ${{ env.SKIPLIST }}
204- python scripts/pass_rate.py --reports reports --json ${{ env.SKIPLIST }} > pass_rate.json
205- python scripts/pass_rate.py --reports reports --suite tutorials --json ${{ env.SKIPLIST }} > pass_rate_tutorials.json
163+ # - name: Run interpreter tests
164+ # run: |
165+ # ${{ env.TRITON_TEST_CMD }} --interpreter --skip-pip-install
166+
167+ # - name: Run Tutorials
168+ # run: |
169+ # ${{ env.TRITON_TEST_CMD }} --tutorial --skip-pip-install
170+
171+ # - name: Run instrumentation tests
172+ # run: |
173+ # ${{ env.TRITON_TEST_CMD }} --instrumentation --skip-pip-install
174+
175+ # - name: Get transformers version
176+ # run: |
177+ # cd pytorch
178+ # TRANSFORMERS_VERSION="$(<.ci/docker/ci_commit_pins/huggingface.txt)"
179+ # echo "TRANSFORMERS_VERSION=$TRANSFORMERS_VERSION" | tee -a $GITHUB_ENV
180+
181+ # - name: Install transformers
182+ # uses: ./.github/actions/install-dependency
183+ # with:
184+ # package: transformers
185+ # repository: huggingface/transformers
186+ # ref: ${{ env.TRANSFORMERS_VERSION }}
187+ # try-tag-prefix: v
188+
189+ # - name: Run E2E test
190+ # run: |
191+ # ${{ env.TRITON_TEST_CMD }} --inductor --skip-pip-install
192+
193+ # - name: Save pip cache
194+ # if: ${{ steps.pip-cache.outputs.status == 'miss' }}
195+ # uses: ./.github/actions/save
196+ # with:
197+ # path: ${{ steps.pip-cache.outputs.path }}
198+ # dest: ${{ steps.pip-cache.outputs.dest }}
199+
200+ # - name: Pass rate
201+ # run: |
202+ # source ./scripts/capture-hw-details.sh
203+ # python scripts/pass_rate.py --reports reports ${{ env.SKIPLIST }}
204+ # python scripts/pass_rate.py --reports reports --json ${{ env.SKIPLIST }} > pass_rate.json
205+ # python scripts/pass_rate.py --reports reports --suite tutorials --json ${{ env.SKIPLIST }} > pass_rate_tutorials.json
206206
207207 - name : Report environment details
208208 run : |
@@ -223,27 +223,27 @@ jobs:
223223 AGAMA_VERSION=$AGAMA_VERSION
224224 EOF
225225
226- - name : Upload pass rate report
227- # upload reports only for the default branch
228- if : github.ref_name == 'main'
229- uses : actions/upload-artifact@v4
230- with :
231- name : pass_rate-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
232- path : pass_rate*.json
233-
234- - name : Upload tutorials performance report
235- uses : actions/upload-artifact@v4
236- with :
237- name : tutorials-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
238- if-no-files-found : warn
239- include-hidden-files : true
240- path : |
241- reports/*/*.csv
242- .env
243-
244- - name : Upload test reports
245- if : inputs.upload_test_reports
246- uses : actions/upload-artifact@v4
247- with :
248- name : test-reports-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
249- path : reports
226+ # - name: Upload pass rate report
227+ # # upload reports only for the default branch
228+ # if: github.ref_name == 'main'
229+ # uses: actions/upload-artifact@v4
230+ # with:
231+ # name: pass_rate-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
232+ # path: pass_rate*.json
233+
234+ # - name: Upload tutorials performance report
235+ # uses: actions/upload-artifact@v4
236+ # with:
237+ # name: tutorials-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
238+ # if-no-files-found: warn
239+ # include-hidden-files: true
240+ # path: |
241+ # reports/*/*.csv
242+ # .env
243+
244+ # - name: Upload test reports
245+ # if: inputs.upload_test_reports
246+ # uses: actions/upload-artifact@v4
247+ # with:
248+ # name: test-reports-${{ inputs.python_version }}-${{ inputs.runner_label || inputs.driver_version }}
249+ # path: reports
0 commit comments