A100 Performance Profiler #229
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
name: A100 Performance Profiler | |
on: | |
schedule: | |
- cron: '00 00 * * *' | |
jobs: | |
sycl_A100_Profiling: | |
name: SYCL A100 Profiling | |
env: | |
SYCL_NAME_PREFIX: sycl_AMD-Epyc-7313_a100_gcc-11.3_cuda-12.0.1 | |
ENABLE_CI_PROFILER: 1 | |
MADGRAPH4GPU_DB_SECRET: ${{ secrets.MADGRAPH4GPU_DB_SECRET }} | |
runs-on: [self-hosted, linux, a100] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Runs SYCL performanceProfiler.py script | |
run: cd tools/profiling/; | |
python3 performanceProfiler.py -l 'SYCL' -b 'master' | |
- name: Uploads SYCL JSON files to DB | |
run: cd tools/profiling/; python3 sendData.py --absLayer SYCL --profiler 1 --branch master | |
cuda_a100_Profiling: | |
name: CUDA A100 Profiling | |
env: | |
CUDA_NAME_PREFIX: cudacpp_AMD-Epyc-7313_a100_gcc-11.2.1_cuda-12.0.1 | |
ENABLE_CI_PROFILER: 1 | |
MADGRAPH4GPU_DB_SECRET: ${{ secrets.MADGRAPH4GPU_DB_SECRET }} | |
runs-on: [self-hosted, linux, a100] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Runs CUDA performanceProfiler.py script | |
run: cd tools/profiling/; | |
python3 performanceProfiler.py -l 'CUDA' -b 'master' | |
- name: Uploads CUDA JSON files to DB | |
run: cd tools/profiling/; python3 sendData.py --absLayer CUDA --profiler 1 --branch master |