Skip to content

Commit 240f97e

Browse files
Apply text-related comments
1 parent 38689a3 commit 240f97e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
### Added
1010

1111
* Added the docstrings to `dpnp.linalg.LinAlgError` exception [#2613](https://github.com/IntelPython/dpnp/pull/2613)
12-
* Added implementation of `dpnp.linalg.lu_solve` for batch inputs (SciPy-compatible) [#2618](https://github.com/IntelPython/dpnp/pull/2618)
12+
* Added implementation of `dpnp.linalg.lu_solve` for batch inputs (SciPy-compatible) [#2619](https://github.com/IntelPython/dpnp/pull/2619)
1313

1414
### Changed
1515

dpnp/backend/extensions/lapack/getrs_batch.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
// - Redistributions in binary form must reproduce the above copyright notice,
1010
// this list of conditions and the following disclaimer in the documentation
1111
// and/or other materials provided with the distribution.
12+
// - Neither the name of the copyright holder nor the names of its contributors
13+
// may be used to endorse or promote products derived from this software
14+
// without specific prior written permission.
1215
//
1316
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1417
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE

dpnp/scipy/linalg/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ def dpnp_lu_solve(lu, piv, b, trans=0, overwrite_b=False, check_finite=True):
487487
_manager = dpu.SequentialOrderManager[exec_q]
488488
dep_evs = _manager.submitted_events
489489

490-
# oneMKL LAPACK getrs overwrites `lu`.
490+
# oneMKL LAPACK getrs_batch overwrites `lu`.
491491
lu_h = dpnp.empty_like(lu, order="F", dtype=res_type, usm_type=res_usm_type)
492492

493493
# use DPCTL tensor function to fill the сopy of the input array

0 commit comments

Comments
 (0)