File tree Expand file tree Collapse file tree 3 files changed +45
-3
lines changed Expand file tree Collapse file tree 3 files changed +45
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ permissions:
10
10
11
11
jobs :
12
12
nightly :
13
- name : Compute Benchmarks Nightly level-zero
13
+ name : Compute Benchmarks Nightly level-zero PVC
14
14
uses : ./.github/workflows/benchmarks-reusable.yml
15
15
with :
16
16
str_name : ' level_zero'
25
25
# we need to wait until previous job is done so that the html report
26
26
# contains both runs
27
27
needs : nightly
28
- name : Compute Benchmarks Nightly level-zero v2
28
+ name : Compute Benchmarks Nightly level-zero v2 PVC
29
29
uses : ./.github/workflows/benchmarks-reusable.yml
30
30
with :
31
31
str_name : ' level_zero_v2'
35
35
sycl_config_params : ' '
36
36
sycl_repo : ' intel/llvm'
37
37
sycl_commit : ' '
38
+
39
+ nightly3 :
40
+ name : Compute Benchmarks Nightly level-zero BMG
41
+ uses : ./.github/workflows/benchmarks-reusable.yml
42
+ with :
43
+ str_name : ' level_zero'
44
+ preset : ' Full'
45
+ pr_no : 0
46
+ bench_script_params : ' --save Baseline_BMG_L0'
47
+ sycl_config_params : ' '
48
+ sycl_repo : ' intel/llvm'
49
+ sycl_commit : ' '
50
+ runner : ' DSS-L0-BMG'
51
+
52
+ nightly4 :
53
+ # we need to wait until previous job is done so that the html report
54
+ # contains both runs
55
+ needs : nightly3
56
+ name : Compute Benchmarks Nightly level-zero v2 BMG
57
+ uses : ./.github/workflows/benchmarks-reusable.yml
58
+ with :
59
+ str_name : ' level_zero_v2'
60
+ preset : ' Full'
61
+ pr_no : 0
62
+ bench_script_params : ' --save Baseline_BMG_L0v2'
63
+ sycl_config_params : ' '
64
+ sycl_repo : ' intel/llvm'
65
+ sycl_commit : ' '
66
+ runner : ' DSS-L0-BMG'
Original file line number Diff line number Diff line change 34
34
required : false
35
35
type : string
36
36
default : ' '
37
+ runner :
38
+ required : true
39
+ type : string
40
+ default : ' level_zero_PERF'
37
41
38
42
permissions :
39
43
contents : write
52
56
build_type : [Release]
53
57
compiler : [{c: clang, cxx: clang++}]
54
58
55
- runs-on : " ${{ inputs.str_name }}_PERF "
59
+ runs-on : " ${{ inputs.runner }}"
56
60
57
61
steps :
58
62
- name : Add comment to PR
Original file line number Diff line number Diff line change 49
49
type : string
50
50
required : false
51
51
default : ' '
52
+ runner :
53
+ description : ' Runner'
54
+ type : choice
55
+ required : true
56
+ default : ' level_zero_PERF'
57
+ options :
58
+ - level_zero_PERF
59
+ - DSS-L0-BMG
52
60
53
61
permissions :
54
62
contents : write
67
75
sycl_commit : ${{ inputs.sycl_commit }}
68
76
compute_runtime_commit : ${{ inputs.compute_runtime_commit }}
69
77
preset : ${{ inputs.preset }}
78
+ runner : ${{ inputs.runner }}
You can’t perform that action at this time.
0 commit comments