kokkos / stdBLAS

Reference Implementation for stdBLAS
Other
118 stars 22 forks source link

Bug in `triangular_matrix_matrix_solve` #244

Closed youyu3 closed 2 years ago

youyu3 commented 2 years ago

In trsm_lower_triangular_right_side, the loop over index 'j' should have a decreasing j, i.e., for (ptrdiff_t j = A_num_cols - 1; j >= 0; --j).