Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
ydshieh committed Mar 21, 2024
1 parent 834908c commit 70dafeb
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/self-scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ jobs:
working-directory: /transformers
run: pip freeze

- id: check
name: check
working-directory: /transformers/tests
run: |
python3 ../utils/split_model_tests_2.py
- id: set-matrix
name: Identify models to test
working-directory: /transformers/tests
Expand Down
6 changes: 0 additions & 6 deletions utils/split_model_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,4 @@
start = end
end = start + num_jobs_per_splits + (1 if idx < num_jobs % args.num_splits else 0)
model_splits.append(d[start:end])
model_splits = [["models/bert"], ["models/gpt2"]]

sec = os.getenv("HF_HUB_READ_TOKEN", None)
# print(type(sec))
# print(sec[:4])

print(model_splits)
43 changes: 43 additions & 0 deletions utils/split_model_tests_2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Copyright 2024 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""
This script is used to get the list of folders under `tests/models` and split the list into `NUM_SLICES` splits.
The main use case is a GitHub Actions workflow file calling this script to get the (nested) list of folders allowing it
to split the list of jobs to run into multiple slices each containing a smaller number of jobs. This way, we can bypass
the maximum of 256 jobs in a matrix.
See the `setup` and `run_tests_gpu` jobs defined in the workflow file `.github/workflows/self-scheduled.yml` for more
details.
Usage:
This script is required to be run under `tests` folder of `transformers` root directory.
Assume we are under `transformers` root directory:
```bash
cd tests
python ../utils/split_model_tests.py --num_splits 64
```
"""

import argparse
import os


if __name__ == "__main__":
sec = os.getenv("HF_HUB_READ_TOKEN", None)
print(type(sec))
print(sec[:4])

0 comments on commit 70dafeb

Please sign in to comment.