Skip to content

Commit

Permalink
fixing bug that somehow escaped previous bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kswirydo committed Mar 15, 2024
1 parent 1e52857 commit 78511ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resolve/vector/VectorHandlerHip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ namespace ReSolve {
rocblas_dgemm(handle_rocblas,
rocblas_operation_transpose,
rocblas_operation_none,
k + 1, //m
k, //m
2, //n
size, //k
&ONE, //alpha
Expand All @@ -250,7 +250,7 @@ namespace ReSolve {
size, //ldb
&ZERO,
res->getData(memory::DEVICE), //c
k + 1); //ldc
k); //ldc

}
}
Expand Down

0 comments on commit 78511ad

Please sign in to comment.