-
Notifications
You must be signed in to change notification settings - Fork 28.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix * update * fix * update * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
- Loading branch information
Showing
5 changed files
with
295 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: Doctest job | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
job_splits: | ||
required: true | ||
type: string | ||
split_keys: | ||
required: true | ||
type: string | ||
|
||
env: | ||
HF_HOME: /mnt/cache | ||
TRANSFORMERS_IS_CI: yes | ||
RUN_SLOW: yes | ||
OMP_NUM_THREADS: 16 | ||
MKL_NUM_THREADS: 16 | ||
SIGOPT_API_TOKEN: ${{ secrets.SIGOPT_API_TOKEN }} | ||
TF_FORCE_GPU_ALLOW_GROWTH: true | ||
|
||
jobs: | ||
run_doctests: | ||
name: " " | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
split_keys: ${{ fromJson(inputs.split_keys) }} | ||
runs-on: [single-gpu, nvidia-gpu, t4, ci] | ||
container: | ||
image: huggingface/transformers-all-latest-gpu | ||
options: --gpus 0 --shm-size "16gb" --ipc host -v /mnt/cache/.cache/huggingface:/mnt/cache/ | ||
steps: | ||
- name: Update clone | ||
working-directory: /transformers | ||
run: git fetch && git checkout ${{ github.sha }} | ||
|
||
- name: Reinstall transformers in edit mode (remove the one installed during docker image build) | ||
working-directory: /transformers | ||
run: python3 -m pip uninstall -y transformers && python3 -m pip install -e .[flax] | ||
|
||
- name: GPU visibility | ||
working-directory: /transformers | ||
run: | | ||
python3 utils/print_env.py | ||
- name: Show installed libraries and their versions | ||
run: pip freeze | ||
|
||
- name: Get doctest files | ||
working-directory: /transformers | ||
run: | | ||
echo "${{ toJson(fromJson(inputs.job_splits)[matrix.split_keys]) }}" > doc_tests.txt | ||
cat doc_tests.txt | ||
- name: Set `split_keys` | ||
shell: bash | ||
run: | | ||
echo "${{ matrix.split_keys }}" | ||
split_keys=${{ matrix.split_keys }} | ||
split_keys=${split_keys//'/'/'_'} | ||
echo "split_keys" | ||
echo "split_keys=$split_keys" >> $GITHUB_ENV | ||
- name: Run doctests | ||
working-directory: /transformers | ||
run: | | ||
cat doc_tests.txt | ||
python3 -m pytest -v --make-reports doc_tests_gpu_${{ env.split_keys }} --doctest-modules $(cat doc_tests.txt) -sv --doctest-continue-on-failure --doctest-glob="*.md" | ||
- name: Failure short reports | ||
if: ${{ failure() }} | ||
continue-on-error: true | ||
run: cat /transformers/reports/doc_tests_gpu_${{ env.split_keys }}/failures_short.txt | ||
|
||
- name: "Test suite reports artifacts: doc_tests_gpu_test_reports_${{ env.split_keys }}" | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: doc_tests_gpu_test_reports_${{ env.split_keys }} | ||
path: /transformers/reports/doc_tests_gpu_${{ env.split_keys }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.