[HIPIFY][BLAS][fix] Fix hipBLAS and rocBLAS TRMM functions support types #640
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[IMP]
rocblas_(s|d|c|z)trmm_outofplace
, as supported only for TRMM v2 CUDA analogues (HIP_SUPPORTED_V2_ONLY
- works for roc* APIs as well)hipblas(S|D|C|Z)trmm
asHIP_UNSUPPORTED
[Reasons]
hipblas(S|D|C|Z)trmm
, actually, do not match neither cublas TRMM functions, nor cublas TRMM _v2 functions: [5.3.X] TRMM functions do not have correct correspondence in hipBLAS hipBLAS#524cublas(S|D|C|Z)trmm
and rocBLAS TRMMrocblas_(s|d|c|z)trmm_outofplace
, notrocblas_(s|d|c|z)trmm
: fixed it[ToDo]
HIP_UNSUPPORTED
mark fromhipblas(S|D|C|Z)trmm
functions after merging hipblasTrmm API change to allow inplace and outofplace behaviour hipBLAS#504cublas2rocblas
and updatecublas2hipblas
synthetic tests