This repository was archived by the owner on May 9, 2024. It is now read-only.
File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 67
67
sudo apt-get install cuda-nvcc-${{ inputs.cuda_compiler_version }}
68
68
conda install -n omnisci-dev -c conda-forge arrow-cpp-proc=4.0.0=cuda
69
69
70
+ - name : Install Intel GPU drivers
71
+ if : inputs.name == 'l0'
72
+ run : |
73
+ wget https://github.com/oneapi-src/level-zero/releases/download/v1.9.4/level-zero-devel_1.9.4+u18.04_amd64.deb
74
+ wget https://github.com/oneapi-src/level-zero/releases/download/v1.9.4/level-zero_1.9.4+u18.04_amd64.deb
75
+ wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.12812.24/intel-igc-core_1.0.12812.24_amd64.deb
76
+ wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.12812.24/intel-igc-opencl_1.0.12812.24_amd64.deb
77
+ wget https://github.com/intel/compute-runtime/releases/download/22.49.25018.24/intel-level-zero-gpu_1.3.25018.24_amd64.deb
78
+ wget https://github.com/intel/compute-runtime/releases/download/22.49.25018.24/libigdgmm12_22.3.0_amd64.deb
79
+ sudo dpkg -i intel-igc-core_1.0.12812.24_amd64.deb intel-level-zero-gpu_1.3.25018.24_amd64.deb libigdgmm12_22.3.0_amd64.deb intel-igc-opencl_1.0.12812.24_amd64.deb
80
+ conda install -n omnisci-dev -c conda-forge level-zero-devel pkg-config
81
+
70
82
- name : Restore Maven cache
71
83
uses : actions/cache@v3
72
84
with :
Original file line number Diff line number Diff line change 26
26
cuda_compiler_version : 12-0
27
27
options : -DENABLE_CUDA=on
28
28
29
+ build-l0 :
30
+ uses : ./.github/workflows/build.yml
31
+ with :
32
+ name : l0
33
+ options : -DENABLE_L0=on
34
+
29
35
style :
30
36
needs : build
31
37
uses : ./.github/workflows/test.yml
You can’t perform that action at this time.
0 commit comments