File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 24
24
description : Runner
25
25
type : choice
26
26
required : true
27
- default : ' L0_PERF '
27
+ default : ' L0_PERF_PVC '
28
28
options :
29
- - L0_PERF
29
+ - L0_PERF_PVC
30
30
31
31
permissions :
32
32
contents : read
Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ jobs:
382
382
--preset Minimal
383
383
--exit-on-failure
384
384
runner : ' L0_PERF_ARC'
385
- compatibility : 1
385
+ compatibility : ' 1 '
386
386
387
387
SYCL :
388
388
uses : ./.github/workflows/reusable_sycl.yml
Original file line number Diff line number Diff line change 25
25
compatibility :
26
26
required : false
27
27
type : string
28
- default : 0
28
+ default : ' 0 '
29
29
description : |
30
30
Set it to 1 to run compatibility sycl benchmarks
31
31
Original file line number Diff line number Diff line change @@ -28,10 +28,11 @@ jobs:
28
28
- name : Download llvm daily release
29
29
run : |
30
30
if [ "${{ matrix.llvm_tag }}" == "latest" ]; then
31
- llvm_tag=$(curl -s https://api.github.com/repos/intel/llvm/releases | awk -F'"' '/"tag_name":/ {print $4; exit}')
31
+ llvm_tag=$(curl -s https://api.github.com/repos/intel/llvm/releases | awk -F'"' '/"tag_name": "nightly / {print $4; exit}')
32
32
else
33
33
llvm_tag="${{ matrix.llvm_tag }}"
34
34
fi
35
+ echo "llvm tag: $llvm_tag"
35
36
download_url="https://github.com/intel/llvm/releases/download/${llvm_tag}/sycl_linux.tar.gz"
36
37
wget --no-verbose $download_url -O sycl_linux.tar.gz
37
38
You can’t perform that action at this time.
0 commit comments