Skip to content

Commit 974b5a0

Browse files
Apply remarks
1 parent c540be3 commit 974b5a0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ if(_use_onemkl_interfaces)
130130
if(TARGET onemath)
131131
set(MKL_INTERFACES_LIB "onemath" CACHE INTERNAL "OneMath lib target")
132132
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")
134134
else()
135135
message(FATAL_ERROR "Neither 'oneMath' nor 'oneMKL' found!")
136136
endif()
137-
message(STATUS "OneMath lib target used: ${MKL_INTERFACES_LIB}")
137+
message(STATUS "MKL interfaces lib target used: ${MKL_INTERFACES_LIB}")
138138
set(CMAKE_INSTALL_RPATH "${CMAKE_BINARY_DIR}/lib")
139139
endif()
140140

dpnp/backend/extensions/lapack/getrf.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ static sycl::event getrf_impl(sycl::queue &exec_q,
9696
} catch (mkl_lapack::exception const &e) {
9797
is_exception_caught = true;
9898
info = e.info();
99-
std::cout << "info: " << info << std::endl;
100-
std::cout << e.detail() << std::endl;
10199

102100
if (info < 0) {
103101
error_msg << "Parameter number " << -info

0 commit comments

Comments
 (0)