Skip to content
8 changes: 7 additions & 1 deletion devops/actions/run-tests/benchmark/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,11 @@ runs:
cmake --install build

cd -
- name: Install linux-tools package
shell: bash
run: |
sudo apt-get update
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this action run inside docker and if so is the image one of the ones we create in this repo? if yes to both i would prefer we do this as part of image creation instead of in an action

Copy link
Contributor Author

@mateuszpn mateuszpn Oct 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sudo apt-get install -y linux-tools-generic linux-tools-$(uname -r)
- name: Checkout results repo
shell: bash
run: |
Expand Down Expand Up @@ -203,7 +208,8 @@ runs:
--output-dir "./llvm-ci-perf-results/" \
--preset "$PRESET" \
--timestamp-override "$SAVE_TIMESTAMP" \
--detect-version sycl,compute_runtime
--detect-version sycl,compute_runtime \
--flamegraph inclusive

echo "-----"
python3 ./devops/scripts/benchmarks/compare.py to_hist \
Expand Down
Loading
Loading