Skip to content

Commit ef64c47

Browse files
committed
Install LAPACK in home dir
1 parent 09b005c commit ef64c47

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,8 @@ jobs:
6464
run: |
6565
cd
6666
git clone https://github.com/Reference-LAPACK/lapack.git
67-
cd lapack
68-
mkdir build && cd build
69-
cmake -DCMAKE_INSTALL_LIBDIR=/opt/lapack -DBUILD_SHARED_LIBS=ON -DCBLAS=ON ..
70-
cmake --build . -j --target install
67+
cmake -S . -B build -DCMAKE_INSTALL_LIBDIR=$(pwd)/install -DBUILD_SHARED_LIBS=ON -DCBLAS=ON ..
68+
cmake --build build -j2 --target install
7169
- name: clone oneMKL
7270
run: |
7371
cd
@@ -97,6 +95,6 @@ jobs:
9795
-DTARGET_DOMAINS=blas \
9896
-DHIPSYCL_TARGETS=omp\;cuda:sm_61\
9997
-DONEMKL_SYCL_IMPLEMENTATION=hipSYCL \
100-
-DREF_BLAS_ROOT=/opt/lapack/ ..
98+
-DREF_BLAS_ROOT=~/lapack/install ..
10199
cmake --build build_cublas -j2
102100
ctest --test-dir build_cublas

0 commit comments

Comments
 (0)