Dense apply seems to allocate when it shouldn't. GrB_apply(C, NULL, NULL, GrB_SIN_FP64, A, NULL) shouldn't allocate if C and A are both non-iso full-dense. I believe T is being written to and copied into C when it should be skipped and written directly into C. (I get this excess allocation in the Julia wrapper, so this might require verification in C.)
Dense
applyseems to allocate when it shouldn't.GrB_apply(C, NULL, NULL, GrB_SIN_FP64, A, NULL)shouldn't allocate ifCandAare both non-iso full-dense. I believeTis being written to and copied intoCwhen it should be skipped and written directly intoC. (I get this excess allocation in the Julia wrapper, so this might require verification in C.)