Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/sycl-linux-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,12 +233,13 @@ jobs:
uses: ./.github/workflows/sycl-linux-run-tests.yml
with:
name: Benchmark suite precommit testing
runner: '["PVC_PERF"]'
runner: '["test-runner2"]'
image: ghcr.io/intel/llvm/sycl_ubuntu2404_nightly:latest
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
target_devices: 'level_zero:gpu'
tests_selector: benchmarks
benchmark_upload_results: false
benchmark_upload_results: true
benchmark_save_name: 'test_runner_47'
benchmark_preset: 'Minimal'
benchmark_dry_run: true
repo_ref: ${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion devops/actions/run-tests/benchmark/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ runs:
esac
case "$RUNNER_TAG" in
'["PVC_PERF"]') MACHINE_TYPE="PVC" ;;
'["BMG_PERF"]') MACHINE_TYPE="BMG" ;;
'["test-runner2"]') MACHINE_TYPE="BMG" ;;
# Best effort at matching
*)
MACHINE_TYPE="${RUNNER_TAG#[\"}"
Expand Down
2 changes: 2 additions & 0 deletions devops/scripts/benchmarks/benches/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
from git_project import GitProject


# Tst runner

class RUNTIMES(Enum):
SYCL_PREVIEW = "syclpreview"
SYCL = "sycl"
Expand Down
2 changes: 1 addition & 1 deletion devops/scripts/benchmarks/utils/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def runner_name(runner_name: str, throw: Exception = None):
"""
Returns True if runner_name is clean (no illegal characters).
"""
return Validate.on_re(runner_name, r"^[a-zA-Z0-9_]+$", throw=throw)
return Validate.on_re(runner_name, r"^[a-zA-Z0-9_-]+$", throw=throw)

@staticmethod
def timestamp(t: str, throw: Exception = None):
Expand Down
Loading