Skip to content

Commit dd21e59

Browse files
authored
Merge pull request #1391 from PatKamin/update-benchmarks
Update intel/llvm benchmarks used in CI
2 parents b02c3c5 + f626d25 commit dd21e59

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/reusable_benchmarks.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ jobs:
126126
repository: intel/llvm
127127
# Note: The same ref is used in docs build (for dashboard generation)!
128128
#
129-
# 15.04.2025
129+
# 27.06.2025
130130
# branch: sycl
131-
ref: 08d11bcae0cc2daec903f222c9b3e3af92f3b806
131+
ref: 3b04aeb7d1d4ad5bbe64fb257f4ca6e5284ec5d0
132132
path: sc
133133
sparse-checkout: |
134134
devops/scripts/benchmarks
@@ -239,7 +239,7 @@ jobs:
239239
body: body
240240
})
241241
242-
- name: Commit data.json and results directory
242+
- name: Commit data.json, data_archive.json, and results directory
243243
working-directory: results-repo
244244
if: inputs.compatibility == 0
245245
run: |
@@ -249,11 +249,12 @@ jobs:
249249
for attempt in {1..5}; do
250250
echo "Attempt #$attempt to push changes"
251251
252-
rm -f data.json
252+
rm -f data.json data_archive.json
253253
cp ${{ github.workspace }}/sc/devops/scripts/benchmarks/html/data.json .
254+
cp ${{ github.workspace }}/sc/devops/scripts/benchmarks/html/data_archive.json .
254255
255-
git add data.json results/
256-
git commit -m "Add benchmark results and data.json"
256+
git add data.json data_archive.json results/
257+
git commit -m "Add benchmark results, data.json, and data_archive.json"
257258
258259
results_file=$(git diff HEAD~1 --name-only -- results/ | head -n 1)
259260
@@ -274,7 +275,7 @@ jobs:
274275
mv ${{ github.workspace }}/temp_$(basename $results_file) $new_file
275276
fi
276277
277-
echo "Regenerating data.json"
278+
echo "Regenerating data.json and data_archive.json"
278279
(cd ${{ github.workspace }} && ${{ github.workspace }}/sc/devops/scripts/benchmarks/main.py ~/bench_workdir_umf --dry-run --results-dir ${{ github.workspace }}/results-repo --output-html remote)
279280
280281
done

.github/workflows/reusable_docs_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ jobs:
5454
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5555
with:
5656
repository: intel/llvm
57-
# 15.04.2025
57+
# 27.06.2025
5858
# branch: sycl
59-
ref: 08d11bcae0cc2daec903f222c9b3e3af92f3b806
59+
ref: 3b04aeb7d1d4ad5bbe64fb257f4ca6e5284ec5d0
6060
path: sc
6161
sparse-checkout: |
6262
devops/scripts/benchmarks
@@ -73,7 +73,7 @@ jobs:
7373
working-directory: ${{ github.workspace }}/build/docs_build/generated/html
7474
run: |
7575
cat << 'EOF' > ./performance/config.js
76-
remoteDataUrl = 'https://raw.githubusercontent.com/oneapi-src/unified-memory-framework/refs/heads/benchmark-results/data.json';
76+
remoteDataUrl = 'https://raw.githubusercontent.com/oneapi-src/unified-memory-framework/refs/heads/benchmark-results/';
7777
defaultCompareNames = ["Baseline_PVC"];
7878
EOF
7979

0 commit comments

Comments
 (0)