-
Notifications
You must be signed in to change notification settings - Fork 27.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
49 additions
and
6 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
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
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,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]) | ||
|