Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
chenpangpang
transformers
Commits
5254220e
Unverified
Commit
5254220e
authored
Apr 15, 2021
by
Lysandre Debut
Committed by
GitHub
Apr 15, 2021
Browse files
Workflow fixes (#11270)
parent
dfc6dd85
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
2 deletions
+46
-2
.github/workflows/self-push.yml
.github/workflows/self-push.yml
+16
-0
.github/workflows/self-scheduled.yml
.github/workflows/self-scheduled.yml
+18
-2
utils/notification_service.py
utils/notification_service.py
+12
-0
No files found.
.github/workflows/self-push.yml
View file @
5254220e
...
...
@@ -38,6 +38,7 @@ jobs:
apt -y update && apt install -y libsndfile1-dev
pip install --upgrade pip
pip install .[sklearn,testing,onnxruntime,sentencepiece,speech]
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cu111.html
-
name
:
Are GPUs recognized by our DL frameworks
run
:
|
...
...
@@ -121,6 +122,7 @@ jobs:
apt -y update && apt install -y libsndfile1-dev
pip install --upgrade pip
pip install .[sklearn,testing,onnxruntime,sentencepiece,speech]
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cu111.html
-
name
:
Are GPUs recognized by our DL frameworks
run
:
|
...
...
@@ -220,6 +222,13 @@ jobs:
if
:
${{ always() }}
run
:
cat reports/tests_torch_cuda_extensions_gpu_failures_short.txt
-
name
:
Test suite reports artifacts
if
:
${{ always() }}
uses
:
actions/upload-artifact@v2
with
:
name
:
run_tests_torch_cuda_extensions_gpu_test_reports
path
:
reports
run_tests_torch_cuda_extensions_multi_gpu
:
runs-on
:
[
self-hosted
,
docker-gpu
,
multi-gpu
]
container
:
...
...
@@ -253,6 +262,13 @@ jobs:
if
:
${{ always() }}
run
:
cat reports/tests_torch_cuda_extensions_multi_gpu_failures_short.txt
-
name
:
Test suite reports artifacts
if
:
${{ always() }}
uses
:
actions/upload-artifact@v2
with
:
name
:
run_tests_torch_cuda_extensions_multi_gpu_test_reports
path
:
reports
send_results
:
name
:
Send results to webhook
...
...
.github/workflows/self-scheduled.yml
View file @
5254220e
...
...
@@ -33,7 +33,8 @@ jobs:
run
:
|
apt -y update && apt install -y libsndfile1-dev
pip install --upgrade pip
pip install .[sklearn,testing,onnxruntime,sentencepiece,speech,deepspeed]
pip install .[sklearn,testing,onnxruntime,sentencepiece,speech]
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cu111.html
-
name
:
Are GPUs recognized by our DL frameworks
run
:
|
...
...
@@ -155,7 +156,8 @@ jobs:
run
:
|
apt -y update && apt install -y libsndfile1-dev
pip install --upgrade pip
pip install .[sklearn,testing,onnxruntime,sentencepiece,speech,deepspeed,fairscale]
pip install .[sklearn,testing,onnxruntime,sentencepiece,speech]
pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cu111.html
-
name
:
Are GPUs recognized by our DL frameworks
run
:
|
...
...
@@ -279,6 +281,13 @@ jobs:
if
:
${{ always() }}
run
:
cat reports/tests_torch_cuda_extensions_gpu_failures_short.txt
-
name
:
Test suite reports artifacts
if
:
${{ always() }}
uses
:
actions/upload-artifact@v2
with
:
name
:
run_tests_torch_cuda_extensions_gpu_test_reports
path
:
reports
run_all_tests_torch_cuda_extensions_multi_gpu
:
runs-on
:
[
self-hosted
,
docker-gpu
,
multi-gpu
]
container
:
...
...
@@ -312,6 +321,13 @@ jobs:
if
:
${{ always() }}
run
:
cat reports/tests_torch_cuda_extensions_multi_gpu_failures_short.txt
-
name
:
Test suite reports artifacts
if
:
${{ always() }}
uses
:
actions/upload-artifact@v2
with
:
name
:
run_tests_torch_cuda_extensions_multi_gpu_test_reports
path
:
reports
send_results
:
name
:
Send results to webhook
runs-on
:
ubuntu-latest
...
...
utils/notification_service.py
View file @
5254220e
...
...
@@ -128,6 +128,12 @@ if __name__ == "__main__":
"common"
:
"run_all_tests_torch_multi_gpu_test_reports/tests_torch_multi_gpu_[].txt"
,
"pipeline"
:
"run_all_tests_torch_multi_gpu_test_reports/tests_torch_pipeline_multi_gpu_[].txt"
,
},
"Torch Cuda Extensions Single GPU"
:
{
"common"
:
"run_tests_torch_cuda_extensions_gpu_test_reports/tests_torch_cuda_extensions_gpu_[].txt"
},
"Torch Cuda Extensions Multi GPU"
:
{
"common"
:
"run_tests_torch_cuda_extensions_multi_gpu_test_reports/tests_torch_cuda_extensions_multi_gpu_[].txt"
},
}
else
:
file_paths
=
{
...
...
@@ -135,6 +141,12 @@ if __name__ == "__main__":
"Torch Single GPU"
:
{
"common"
:
"run_all_tests_torch_gpu_test_reports/tests_torch_gpu_[].txt"
},
"TF Multi GPU"
:
{
"common"
:
"run_all_tests_tf_multi_gpu_test_reports/tests_tf_multi_gpu_[].txt"
},
"Torch Multi GPU"
:
{
"common"
:
"run_all_tests_torch_multi_gpu_test_reports/tests_torch_multi_gpu_[].txt"
},
"Torch Cuda Extensions Single GPU"
:
{
"common"
:
"run_tests_torch_cuda_extensions_gpu_test_reports/tests_torch_cuda_extensions_gpu_[].txt"
},
"Torch Cuda Extensions Multi GPU"
:
{
"common"
:
"run_tests_torch_cuda_extensions_multi_gpu_test_reports/tests_torch_cuda_extensions_multi_gpu_[].txt"
},
}
client
=
WebClient
(
token
=
os
.
environ
[
"CI_SLACK_BOT_TOKEN"
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment