File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 27
27
env :
28
28
CACHE_DIR : ${{ github.workspace }}/.container-cache
29
29
steps :
30
+ - name : Install Clang 17.0.6
31
+ run : |
32
+ yum update -y
33
+ yum install -y wget
34
+ wget https://apt.llvm.org/llvm.sh
35
+ chmod +x llvm.sh
36
+ ./llvm.sh 17
37
+ yum install -y clang-17 lldb-17 lld-17 clang-tools-extra-17
38
+ echo "Clang version installed:"
39
+ - name : Verify Clang installation
40
+ run : clang --version
30
41
- name : Configure local git mirrors
31
42
run : |
32
43
# Our stock runners have access to certain local git caches. If these
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ cmake -S "$repo_root/externals/llvm-project/llvm" -B "$build_dir" \
50
50
-DLLVM_EXTERNAL_TORCH_MLIR_SOURCE_DIR=" $repo_root " \
51
51
-DLLVM_TARGETS_TO_BUILD=host \
52
52
-DMLIR_ENABLE_BINDINGS_PYTHON=ON \
53
- -DTORCH_MLIR_ENABLE_LTC=OFF \
53
+ -DTORCH_MLIR_ENABLE_LTC=ON \
54
54
-DTORCH_MLIR_ENABLE_PYTORCH_EXTENSIONS=ON
55
55
echo " ::endgroup::"
56
56
You can’t perform that action at this time.
0 commit comments