github ROCm/rocBLAS v0.4.2.3
rocBLAS-0.4.2.3 release for ROCM 1.5

latest releases: rocm-6.1.1, rocm-6.1.0, rocm-6.0.2...
pre-release6 years ago

Library release associated with the ROCm v1.5 platform release.

Library tuned for Fiji family hardware.

API Change: The order parameter has been removed from the gemm function. gemm functions now only support column major ordering. If you have row major matrices switch the following parameters: transa and transb, m and n, A and B, lda and ldb.

Below is the rocblas_sgemm function prototype.

rocblas_sgemm(
rocblas_handle handle,
rocblas_operation transa, rocblas_operation transb,
rocblas_int m, rocblas_int n, rocblas_int k,
const float *alpha,
const float *A, rocblas_int lda,
const float *B, rocblas_int ldb,
const float *beta,
float *C, rocblas_int ldc);

Don't miss a new rocBLAS release

NewReleases is sending notifications on new releases.