-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* BLAS - scal: removing check on assignable memory spaces That check is stricter than required as we will values by reference to perform copies and won't try to reassign pointers. Signed-off-by: Luc Berger-Vergiat <[email protected]> * BLAS - rot: check at runtime that X and Y have same extent Signed-off-by: Luc Berger-Vergiat <[email protected]> * BLAS - rot: improving static assertions Signed-off-by: Luc Berger-Vergiat <[email protected]> * BLAS - rotg: check for non-complex types Signed-off-by: Luc Berger-Vergiat <[email protected]> * BLAS - ger: check that matrix stores values as non-const Signed-off-by: Luc Berger-Vergiat <[email protected]> * BLAS - trmm: check for valid execution space type. Signed-off-by: Luc Berger-Vergiat <[email protected]> * BLAS: fix missing semi-colon at end of static_assert Signed-off-by: Luc Berger-Vergiat <[email protected]> * Applying clang-format Signed-off-by: Luc Berger-Vergiat <[email protected]> * More clang-format Signed-off-by: Luc Berger-Vergiat <[email protected]> * Blas - rot: fixing interface of rot The cosine coefficient is strictly real while the sine coefficient can be real or complex leading to a bug in the current API. This commit should fix that for the native and TPL implementation and the associated unit-test is also fixed accordingly. Signed-off-by: Luc Berger-Vergiat <[email protected]> * BLAS - ROT: fixing types for Host TPL calls to ROT function The types for the arguments c and s are actually different and need to be appropriately propagated through the TPL layers of the library. Signed-off-by: Luc Berger-Vergiat <[email protected]> --------- Signed-off-by: Luc Berger-Vergiat <[email protected]>
- Loading branch information
Showing
12 changed files
with
234 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.