Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit 854ba3f

Browse files
committed
perf: revert upperbound LV usage
1 parent ed02845 commit 854ba3f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/impl/matmul.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ end
3333
function matmuladd!(C::AbstractMatrix, ::LoopedArrayOp, A::AbstractMatrix,
3434
B::AbstractMatrix, bias::AbstractVector)
3535
if unrolled_any((256), (size(C, 1), size(A, 2), size(B, 2))) &&
36-
unrolled_all((1024), (size(C, 1), size(A, 2), size(B, 2))) &&
3736
LoopVectorization.check_args(C, A, B)
3837
__matmuladd_loopvec!(C, A, B, bias)
3938
return
@@ -93,7 +92,6 @@ function matmul!(C::AbstractMatrix, ::AbstractInternalArrayOpMode,
9392
end
9493
function matmul!(C::AbstractMatrix, ::LoopedArrayOp, A::AbstractMatrix, B::AbstractMatrix)
9594
if unrolled_any((256), (size(C, 1), size(A, 2), size(B, 2))) &&
96-
unrolled_all((1024), (size(C, 1), size(A, 2), size(B, 2))) &&
9795
LoopVectorization.check_args(C, A, B)
9896
__matmul_loopvec!(C, A, B)
9997
return

0 commit comments

Comments
 (0)