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 @@ -196,8 +196,7 @@ std::pair<sycl::event, sycl::event>
196
196
bool is_ipiv_array_c_contig = ipiv_array.is_c_contiguous ();
197
197
if (!is_a_array_c_contig && !is_a_array_f_contig) {
198
198
throw py::value_error (" The input array "
199
- " must be must be either C-contiguous "
200
- " or F-contiguous" );
199
+ " must be contiguous" );
201
200
}
202
201
if (!is_ipiv_array_c_contig) {
203
202
throw py::value_error (" The array of pivot indices "
Original file line number Diff line number Diff line change @@ -225,8 +225,7 @@ std::pair<sycl::event, sycl::event>
225
225
bool is_ipiv_array_c_contig = ipiv_array.is_c_contiguous ();
226
226
if (!is_a_array_c_contig && !is_a_array_f_contig) {
227
227
throw py::value_error (" The input array "
228
- " must be must be either C-contiguous "
229
- " or F-contiguous" );
228
+ " must be must contiguous" );
230
229
}
231
230
if (!is_ipiv_array_c_contig) {
232
231
throw py::value_error (" The array of pivot indices "
You can’t perform that action at this time.
0 commit comments