Disable opencl test
This commit is contained in:
parent
52350cc9d7
commit
cc0fe43849
1 changed files with 23 additions and 23 deletions
46
.github/workflows/test.yaml
vendored
46
.github/workflows/test.yaml
vendored
|
@ -78,31 +78,31 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python3 -m pytest
|
python3 -m pytest
|
||||||
|
|
||||||
build-linux-opencl:
|
# build-linux-opencl:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v3
|
# - uses: actions/checkout@v3
|
||||||
with:
|
# with:
|
||||||
submodules: "true"
|
# submodules: "true"
|
||||||
- name: Set up Python 3.8
|
# - name: Set up Python 3.8
|
||||||
uses: actions/setup-python@v4
|
# uses: actions/setup-python@v4
|
||||||
with:
|
# with:
|
||||||
python-version: "3.8"
|
# python-version: "3.8"
|
||||||
- name: Set up OpenCL & CLBlast
|
# - name: Set up OpenCL & CLBlast
|
||||||
run: |
|
# run: |
|
||||||
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
|
# wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
|
||||||
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
|
# echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
|
||||||
sudo apt-get update
|
# sudo apt-get update
|
||||||
sudo apt-get install -y --no-install-recommends llvm intel-oneapi-runtime-opencl intel-oneapi-runtime-compilers libclblast-dev
|
# sudo apt-get install -y --no-install-recommends llvm intel-oneapi-runtime-opencl intel-oneapi-runtime-compilers libclblast-dev
|
||||||
- name: Install dependencies
|
# - name: Install dependencies
|
||||||
run: |
|
# run: |
|
||||||
python3 -m pip install --upgrade pip
|
# python3 -m pip install --upgrade pip
|
||||||
CMAKE_ARGS="-DLLAMA_CLBLAST=on" python3 -m pip install .[all] --verbose
|
# CMAKE_ARGS="-DLLAMA_CLBLAST=on" python3 -m pip install .[all] --verbose
|
||||||
- name: Test with pytest
|
# - name: Test with pytest
|
||||||
run: |
|
# run: |
|
||||||
python3 -m pytest
|
# python3 -m pytest
|
||||||
|
|
||||||
|
|
||||||
build-macos-metal:
|
build-macos-metal:
|
||||||
|
|
Loading…
Reference in a new issue