File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33install_env () {
4+ set -vx
45 export PATH=" $HOME /miniforge3/bin:$PATH "
56 conda create -n triton --override-channels -c conda-forge python=$python_version .*
67 conda env update -f scripts/triton.yml
78 find /opt/intel/oneapi/ \( -name ' *.so' -or -name ' *.so.*' \) -exec cp -n {} $HOME /miniforge3/envs/triton/lib \;
89 ln -snf /usr/include/level_zero $HOME /miniforge3/envs/triton/bin/../x86_64-conda-linux-gnu/sysroot/usr/include/level_zero
910 find /usr -name libze_\* -exec cp -n {} $HOME /miniforge3/envs/triton/lib \;
10- ln -snf /opt/intel/oneapi/compiler/2024.1/include/sycl $HOME /miniforge3/envs/triton/lib/python3.9/site-packages/triton/backends/intel/include
11+ ln -snf /opt/intel/oneapi/compiler/2024.1/include/sycl $HOME /miniforge3/envs/triton/lib/python$python_version /site-packages/triton/backends/intel/include
12+ ls -l /home/runner/miniforge3/envs/triton/lib/python$python_version /site-packages/triton/backends/intel/include/
13+ ls -l /home/runner/miniforge3/envs/triton/lib/python$python_version /site-packages/triton/backends/intel/include
1114}
1215
1316print_env_info () {
You can’t perform that action at this time.
0 commit comments