File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff 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]'
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
Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments