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

Commit

Permalink
add mtile for epilogue in gemv
Browse files Browse the repository at this point in the history
  • Loading branch information
luoyu-intel committed Apr 30, 2024
1 parent 7bb4912 commit ea84cdb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bestla/bestla/bestla_wrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ class LauncherBase {
(_config.size[1] - in) * sizeof(CType));
}
}
Epilogue::forward(_param.paramC.C + _config.loc[1], 0, 0, _config.loc[1], 1, _config.size[1], _param.paramC,
StackTmp, TmpSize);
Epilogue::forward(_param.paramC.C + _config.loc[1], _param.paramC.ldc, 0, _config.loc[1], MTILE,
_config.size[1], _param.paramC, StackTmp, TmpSize);
}
}

Expand Down Expand Up @@ -477,8 +477,8 @@ class LauncherIntKBlock {
(_config.size[1] - in) * sizeof(CType));
}
}
Epilogue::forward(_param.paramC.C + _config.loc[1], 0, 0, _config.loc[1], 1, _config.size[1], _param.paramC,
StackTmp, TmpSize);
Epilogue::forward(_param.paramC.C + _config.loc[1], _param.paramC.ldc, 0, _config.loc[1], MTILE, _config.size[1],
_param.paramC, StackTmp, TmpSize);
}
}

Expand Down

0 comments on commit ea84cdb

Please sign in to comment.