[bug] fix device thread gemm.h constructor (#1473)

This commit is contained in:
LiYu Lu 2024-07-10 23:12:36 +08:00 committed by GitHub
parent c5239d8312
commit e48c7618e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,7 +91,7 @@ struct Gemm {
A_tile[i] = ElementA(0);
}
for (int j = 0; j < OutputTile::kColumn; ++j) {
for (int j = 0; j < OutputTile::kRow; ++j) {
B_tile[j] = ElementB(0);
}