Skip to content

Commit 14bdacc

Browse files
committed
Improve error tracing by adding missing space
1 parent 0e8afc4 commit 14bdacc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dpnp/backend/extensions/lapack/getrf_batch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ static sycl::event getrf_batch_impl(sycl::queue &exec_q,
116116
auto error_matrices_ids_size = error_matrices_ids.size();
117117
auto dev_info_size = static_cast<std::size_t>(py::len(dev_info));
118118
if (error_matrices_ids_size != dev_info_size) {
119-
throw py::value_error("The size of `dev_info` must be equal to" +
119+
throw py::value_error("The size of `dev_info` must be equal to " +
120120
std::to_string(error_matrices_ids_size) +
121121
", but currently it is " +
122122
std::to_string(dev_info_size) + ".");

dpnp/backend/extensions/lapack/getri_batch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ static sycl::event getri_batch_impl(sycl::queue &exec_q,
114114
auto error_matrices_ids_size = error_matrices_ids.size();
115115
auto dev_info_size = static_cast<std::size_t>(py::len(dev_info));
116116
if (error_matrices_ids_size != dev_info_size) {
117-
throw py::value_error("The size of `dev_info` must be equal to" +
117+
throw py::value_error("The size of `dev_info` must be equal to " +
118118
std::to_string(error_matrices_ids_size) +
119119
", but currently it is " +
120120
std::to_string(dev_info_size) + ".");

0 commit comments

Comments
 (0)