Skip to content

Instantly share code, notes, and snippets.

View x7z9's full-sized avatar

Yadagiri x7z9

View GitHub Profile
@x7z9
x7z9 / matsum.cpd
Created September 13, 2025 17:23 — forked from Proektsoftbg/matsum.cpd
Matrix addition benchmark
n = 10000
#hide
A = floor(random(mfill(matrix_hp(n; n); 1000)))
B = A*2
#show
A
t1 = timer(0)
A + B
t2 = timer(0)
t2 - t1