Skip to content

Commit cc3803a

Browse files
committed
check
1 parent e427f29 commit cc3803a

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/actions/setup-triton/action.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ inputs:
1111
use_spirv_backend:
1212
description: Use SPIR-V backend
1313
default: "false"
14+
llvm_repo:
15+
description: LLVM repository URL
16+
default: "llvm/llvm-project"
17+
llvm_ref:
18+
description: LLVM repository reference (branch, tag, commit)
19+
default: ""
1420
command:
1521
description: Command to execute
1622
default: DEBUG=1 pip install -v '.[build,tests,tutorials]'
@@ -45,8 +51,8 @@ runs:
4551
if: ${{ inputs.build_llvm == 'true' && steps.llvm-cache.outputs.status == 'miss' }}
4652
uses: actions/checkout@v5
4753
with:
48-
repository: llvm/llvm-project
49-
ref: ${{ env.LLVM_COMMIT_ID }}
54+
repository: ${{ inputs.llvm_repo }}
55+
ref: ${{ inputs.llvm_ref != '' && inputs.llvm_ref || env.LLVM_COMMIT_ID }}
5056
path: llvm
5157
submodules: recursive
5258

.github/workflows/triton-benchmarks.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ jobs:
105105

106106
- name: Setup Triton
107107
uses: ./.github/actions/setup-triton
108+
with:
109+
build_llvm: "true"
110+
llvm_repo: "dev-tomek/llvm-project"
111+
llvm_ref: "tkuczynski/check_barrier_lowering_perf"
108112

109113
- name: Create reports dir
110114
run: |

0 commit comments

Comments
 (0)