ROCm / hipBLASLt

hipBLASLt is a library that provides general matrix-matrix operations with a flexible API and extends functionalities beyond a traditional BLAS library
https://rocm.docs.amd.com/projects/hipBLASLt/en/latest/index.html
MIT License
40 stars 57 forks source link

Inputs in `GemmInputs` should be pointers to `const` #832

Closed atamazov closed 1 week ago

atamazov commented 2 weeks ago

Here: https://github.com/ROCm/hipBLASLt/blob/65f51697f59616fd17e901d4bef7cfaa225b858a/library/include/hipblaslt-ext.hpp#L132-L137

Otherwise we have to provide a workaround in MIOpen.

KKyang commented 1 week ago

https://github.com/ROCm/hipBLASLt/pull/846 merged

atamazov commented 4 days ago

@KKyang Thenks. How the user of the library will detect if workaround (like const_cast that we use currently) is needed or not? Can we use hipBlasLt version number for this purpose?