Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With the bug fix #2117 there can be an issue with `z_tmp` memory being uninitialized. SPMM formula is `Z = alpha . X * Y + beta . Z` so when `beta` is not zero, Z is being read. The proposed solution in this PR remove the need for an extra allocation and a copy from/to an external buffer, by creating a strided view of the original Z. Authors: - Micka (https://github.com/lowener) Approvers: - Corey J. Nolet (https://github.com/cjnolet) URL: #2124
- Loading branch information