Skip to content

Commit

Permalink
runner-0.0.20: DLE instead of PTDB (#2691)
Browse files Browse the repository at this point in the history
Fixes #2592 for CI runners except performance runners.
  • Loading branch information
pbchekin authored Nov 13, 2024
1 parent e33285b commit a5393bf
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-update-translator-cid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on:
- max1100
- rolling
- runner-0.0.19
- runner-0.0.20
defaults:
run:
shell: bash -noprofile --norc -eo pipefail -c "source /opt/intel/oneapi/setvars.sh > /dev/null; source {0}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bandit-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on:
- max1100
- rolling
- runner-0.0.19
- runner-0.0.20
defaults:
run:
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ on:
runner_version:
description: Runner label for version
type: string
default: runner-0.0.19
default: runner-0.0.20

permissions: read-all

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/conda-test-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ on:
runner_version:
description: Runner label for version
type: string
default: runner-0.0.19
default: runner-0.0.20
env_manager:
description: Environment manager
default: conda
Expand All @@ -82,7 +82,7 @@ jobs:
id: conda-cache
uses: ./.github/actions/load
env:
CACHE_NUMBER: 6
CACHE_NUMBER: 7
with:
path: $HOME/miniforge3/envs/triton
key: conda-${{ inputs.env_manager }}-py${{ matrix.python }}-${{ hashFiles('scripts/triton.yml', 'python/pyproject.toml', 'python/setup.py') }}-${{ env.CACHE_NUMBER }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on:
- max1100
- rolling
- runner-0.0.19
- runner-0.0.20
strategy:
matrix:
python:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/no-basekit-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on:
- max1100
- rolling
- runner-0.0.19
- runner-0.0.20
strategy:
matrix:
python: ${{ github.ref_name == 'main' && fromJson('["3.9", "3.10", "3.11"]') || fromJson('["3.9"]') }}
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

link_sycl() {
mkdir -p $HOME/miniforge3/envs/triton/$1
ln -snf /opt/intel/oneapi/compiler/2024.1/include/sycl $HOME/miniforge3/envs/triton/$1/
ln -snf /opt/intel/oneapi/compiler/2024.1/include/sycl/CL $HOME/miniforge3/envs/triton/$1/
ln -snf /opt/intel/oneapi/compiler/latest/include/sycl $HOME/miniforge3/envs/triton/$1/
ln -snf /opt/intel/oneapi/compiler/latest/include/sycl/CL $HOME/miniforge3/envs/triton/$1/
}

install_env() {
Expand Down

0 comments on commit a5393bf

Please sign in to comment.