Skip to content

Commit 86eab40

Browse files
committed
BLAS decision should be for larger than 14x14, if anything.
1 parent ef1ba23 commit 86eab40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/matrix_multiply.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ end
106106
S = Size(sa[1], sb[2])
107107

108108
# Heuristic choice between BLAS and explicit unrolling (or chunk-based unrolling)
109-
if sa[1]*sa[2]*sb[2] >= 12*12*12
109+
if sa[1]*sa[2]*sb[2] >= 14*14*14
110110
Sa = TSize{size(S),false}()
111111
Sb = TSize{sa,false}()
112112
Sc = TSize{sb,false}()

0 commit comments

Comments
 (0)