forked from madgraph5/madgraph4gpu
-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (33 loc) · 1.25 KB
/
a100_profiler.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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