Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
beomki-yeo committed Apr 11, 2024
1 parent fd5ecb7 commit fc5f68f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions math/cmath/include/algebra/math/impl/cmath_operators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ ALGEBRA_HOST_DEVICE inline array_t<array_t<scalar_t, M>, O> operator*(

array_t<array_t<scalar_t, M>, O> C;

for (size_type j = 0; j < M; ++j) {
for (size_type i = 0; i < O; ++i) {
for (size_type j = 0; j < O; ++j) {
for (size_type i = 0; i < M; ++i) {
C[j][i] = 0.f;
}
}
Expand Down

0 comments on commit fc5f68f

Please sign in to comment.