File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
dpnp/backend/extensions/lapack Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -130,11 +130,11 @@ if(_use_onemkl_interfaces)
130
130
if (TARGET onemath )
131
131
set (MKL_INTERFACES_LIB "onemath" CACHE INTERNAL "OneMath lib target" )
132
132
elseif (TARGET onemkl )
133
- set (MKL_INTERFACES_LIB "onemkl" CACHE INTERNAL "OneMath lib target" )
133
+ set (MKL_INTERFACES_LIB "onemkl" CACHE INTERNAL "OneMKL lib target" )
134
134
else ()
135
135
message (FATAL_ERROR "Neither 'oneMath' nor 'oneMKL' found!" )
136
136
endif ()
137
- message (STATUS "OneMath lib target used: ${MKL_INTERFACES_LIB} " )
137
+ message (STATUS "MKL interfaces lib target used: ${MKL_INTERFACES_LIB} " )
138
138
set (CMAKE_INSTALL_RPATH "${CMAKE_BINARY_DIR} /lib" )
139
139
endif ()
140
140
Original file line number Diff line number Diff line change @@ -96,8 +96,6 @@ static sycl::event getrf_impl(sycl::queue &exec_q,
96
96
} catch (mkl_lapack::exception const &e) {
97
97
is_exception_caught = true ;
98
98
info = e.info ();
99
- std::cout << " info: " << info << std::endl;
100
- std::cout << e.detail () << std::endl;
101
99
102
100
if (info < 0 ) {
103
101
error_msg << " Parameter number " << -info
You can’t perform that action at this time.
0 commit comments