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