summaryrefslogtreecommitdiff
path: root/examples/program_analysis/paper_demos/gemm1.before.txt
blob: 5ff9d2bd36dbd6c1cea59e1e621084562e4a154d (plain)
1
2
3
4
5
6
assert(k > 0);
int outer = k * 100;
int inner = k * 10;
read_mat(outer, inner, &A);
read_mat(inner, outer, &B);
gemm_large(A, B, &C, outer, inner, outer);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback