We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b005c commit ef64c47Copy full SHA for ef64c47
.github/workflows/linux.yml
@@ -64,10 +64,8 @@ jobs:
64
run: |
65
cd
66
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
+ cmake -S . -B build -DCMAKE_INSTALL_LIBDIR=$(pwd)/install -DBUILD_SHARED_LIBS=ON -DCBLAS=ON ..
+ cmake --build build -j2 --target install
71
- name: clone oneMKL
72
73
@@ -97,6 +95,6 @@ jobs:
97
95
-DTARGET_DOMAINS=blas \
98
96
-DHIPSYCL_TARGETS=omp\;cuda:sm_61\
99
-DONEMKL_SYCL_IMPLEMENTATION=hipSYCL \
100
- -DREF_BLAS_ROOT=/opt/lapack/ ..
+ -DREF_BLAS_ROOT=~/lapack/install ..
101
cmake --build build_cublas -j2
102
ctest --test-dir build_cublas
0 commit comments