Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
168198e
Add SYMM-backed dispatch to sketch_symmetric; stub sparse-SkOp branch
mmelnich May 13, 2026
c73bd19
Add Symmetric<SpMat> wrapper for sparse symmetric matrices
mmelnich May 13, 2026
a26f1db
Add spsymm: symmetric sparse x dense matmul with MKL fast path and pe…
mmelnich May 13, 2026
fce1e5a
Add Case D stub (sparse-symm x sparse -> dense) and document the 4-ca…
mmelnich May 13, 2026
512fa11
RTD: document the new sketch_symmetric uplo signature and add spsymm
mmelnich May 13, 2026
c6638ce
Extract lascl helper to RandBLAS::util; replace hand-rolled beta-scal…
mmelnich May 14, 2026
09b1dc1
Extract spsymm_scatter helpers shared across CSR / CSC / COO fallbacks
mmelnich May 14, 2026
6db9252
mkl_spsymm: handle CSC via CSC.transpose() CSR-view + flipped uplo
mmelnich May 14, 2026
c764d31
sksy: extract Case-B stub-throw helper, deduplicate four stub bodies
mmelnich May 14, 2026
3071f5e
test_spsymm: share run_case setup with the wrapper-routing test
mmelnich May 14, 2026
c0517eb
Extract mkl_sparse_mm_call: shared type-dispatched wrapper around MKL…
mmelnich May 14, 2026
992a2f3
Sweep pre-existing safe_scal-in-loop matrix-scale sites to use lascl
mmelnich May 14, 2026
e7b9a51
mkl_spsymm: handle side=Right via opposite-layout reinterpretation
mmelnich May 14, 2026
a7005f1
sksy: transpose-copy S into matching layout for SYMM on layout-mismatch
mmelnich May 14, 2026
096b063
Add spsymm / sketch_symmetric perf benchmark; expose spsymm via RandB…
mmelnich May 14, 2026
27cb439
sksy: hand-roll Case B (dense-symm A x sparse SkOp); promote stub to …
mmelnich May 14, 2026
d4c42b7
spsymm: promote Case D from stub to densify-B + Case-C composition
mmelnich May 14, 2026
0af25b0
Address Riley review pass: factor COO body, drop perf claim, fix stal…
mmelnich May 15, 2026
e7986dc
docs: strip em-dashes from comments and notes in symm-kernel files
mmelnich May 15, 2026
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
1 change: 1 addition & 0 deletions RandBLAS.hh
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,6 @@
#include <RandBLAS/skve.hh>
#include <RandBLAS/sksy.hh>
#include <RandBLAS/sparse_data/sksp.hh>
#include <RandBLAS/sparse_data/spsymm_dispatch.hh>

#endif
Loading
Loading