Skip to content

Commit 3f2236b

Browse files
committed
[oneMKL] remove unused blas sycl lib from batched_linear_solver
1 parent 345ff59 commit 3f2236b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Libraries/oneMKL/batched_linear_solver/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ If everything is working correctly, the output should be similar to this:
6565
```
6666
u172874@s001-n157:~/oneAPI-samples/Libraries/oneMKL/batched_linear_solver$ make
6767
ifx lu_solve_omp_offload.F90 -o lu_solve -i8 -free -qmkl
68-
ifx lu_solve_omp_offload.F90 -o lu_solve_omp_offload -i8 -free -qmkl -DMKL_ILP64 -qopenmp -fopenmp-targets=spir64 -qmkl-sycl-impl="blas,lapack"
69-
ifx lu_solve_omp_offload_optimized.F90 -o lu_solve_omp_offload_optimized -i8 -free -qmkl -DMKL_ILP64 -qopenmp -fopenmp-targets=spir64 -qmkl-sycl-impl="blas,lapack"
68+
ifx lu_solve_omp_offload.F90 -o lu_solve_omp_offload -i8 -free -qmkl -DMKL_ILP64 -qopenmp -fopenmp-targets=spir64 -qmkl-sycl-impl=lapack
69+
ifx lu_solve_omp_offload_optimized.F90 -o lu_solve_omp_offload_optimized -i8 -free -qmkl -DMKL_ILP64 -qopenmp -fopenmp-targets=spir64 -qmkl-sycl-impl=lapack
7070
./lu_solve -n 64 -b 8 -r 1 -c 2
7171
Matrix dimensions: 64
7272
Batch size: 8

Libraries/oneMKL/batched_linear_solver/lu_solve_omp_offload.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
!
2323
! Compile for GPU:
2424
! ifx -i8 -DMKL_ILP64 -qopenmp -fopenmp-targets=spir64 -free \
25-
! -qmkl -qmkl-sycl-impl="blas,lapack" \
25+
! -qmkl -qmkl-sycl-impl=lapack \
2626
! lu_solve_omp_offload_ex1_timer.F90 -o lu_solve_ex1_omp_timer
2727
!
2828
! Compile with -DSP to use single precision instead of double precision.

Libraries/oneMKL/batched_linear_solver/lu_solve_omp_offload_optimized.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
!
2323
! Compile for GPU:
2424
! ifx -i8 -DMKL_ILP64 -qopenmp -fopenmp-targets=spir64 -free \
25-
! -qmkl -qmkl-sycl-impl="blas,lapack" \
25+
! -qmkl -qmkl-sycl-impl=lapack \
2626
! lu_solve_omp_offload_ex3_timer.F90 -o lu_solve_ex3_omp_timer
2727
!
2828
! Compile with -DSP to use single precision instead of double precision.

Libraries/oneMKL/batched_linear_solver/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ run_all: lu_solve lu_solve_omp_offload lu_solve_omp_offload_optimized
1010
./lu_solve_omp_offload_optimized -n 64 -b 8 -r 1 -c 2
1111

1212
IFX_OPTS = -i8 -free -qmkl
13-
IFX_OPTS_OFFLOAD = -DMKL_ILP64 -qopenmp -fopenmp-targets=spir64 -qmkl-sycl-impl="blas,lapack"
13+
IFX_OPTS_OFFLOAD = -DMKL_ILP64 -qopenmp -fopenmp-targets=spir64 -qmkl-sycl-impl=lapack
1414

1515
lu_solve: lu_solve_omp_offload.F90
1616
ifx $< -o $@ $(IFX_OPTS)

0 commit comments

Comments
 (0)