Skip to content

Commit

Permalink
Add path to lapack in cmake command
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsfriess committed Jun 20, 2022
1 parent 33d23a5 commit 7f4ddbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux_hipsycl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
git clone https://github.com/Reference-LAPACK/lapack.git
cd lapack
mkdir build && cd build
cmake -DCMAKE_INSTALL_LIBDIR=opt/lapack -DBUILD_SHARED_LIBS=ON -DCBLAS=ON ..
cmake -DCMAKE_INSTALL_LIBDIR=/opt/lapack -DBUILD_SHARED_LIBS=ON -DCBLAS=ON ..
cmake --build . -j --target install
- name: clone and build oneMKL
env:
Expand All @@ -67,7 +67,7 @@ jobs:
cd oneMKL
mkdir build
cd build
cmake -DENABLE_CUBLAS_BACKEND=False -DENABLE_MKLGPU_BACKEND=False -DENABLE_NETLIB_BACKEND=False -DENABLE_ROCBLAS_BACKEND=True -DTARGET_DOMAINS=blas -DMKL_ROOT=/opt/intel/mkl/latest/ -DHIPSYCL_TARGETS=omp\;hip:gfx906 -DONEMKL_SYCL_IMPLEMENTATION=hipSYCL ..
cmake -DENABLE_CUBLAS_BACKEND=False -DENABLE_MKLGPU_BACKEND=False -DENABLE_NETLIB_BACKEND=False -DENABLE_ROCBLAS_BACKEND=True -DTARGET_DOMAINS=blas -DMKL_ROOT=/opt/intel/mkl/latest/ -DHIPSYCL_TARGETS=omp\;hip:gfx906 -DONEMKL_SYCL_IMPLEMENTATION=hipSYCL -DREF_BLAS_ROOT=/opt/lapack/ ..
make -j8
- name: Run oneMKL tests
run: |
Expand Down

0 comments on commit 7f4ddbd

Please sign in to comment.