Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
luoyu-intel committed May 29, 2024
1 parent e8829a2 commit 41f146b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bestla/bestla/bestla_parallel.h
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ class SchedulerKBlockS : public SchedulerBase<_GemmCore_T> {
} else {
this->mBlock[1] = this->mThdSize[1];
}
size_t csize = static_cast<size_t>(mBlock[0]) * mBlock[1] * this->mEleSize[2];
size_t csize = static_cast<size_t>(this->mBlock[0]) * this->mBlock[1] * this->mEleSize[2];
auto rawk = static_cast<int>((valid_total - csize) / 2 /
(this->mStep[0] * this->mEleSize[0] +
float(CorSize * (this->mStep[0] + this->mBlock[1])) / this->mKBlock +
Expand Down

0 comments on commit 41f146b

Please sign in to comment.