Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/matx/transforms/matmul.h
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ class matxMatMulHandle_t {
void *c_hp = nullptr; // Make these void since they only work on complex types
void *a_hp = nullptr;
void *b_hp = nullptr;
size_t workspaceSize = 1 << 25UL; // 16MB buffer suggested by cuBLAS team
size_t workspaceSize = 1 << 22UL; // 4MB buffer suggested by cuBLAS team
void *workspace = nullptr;
detail::MatMulParams_t params_;

Expand Down