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

Commit

Permalink
perf: revert upperbound LV usage
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Aug 1, 2024
1 parent ed02845 commit 854ba3f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/impl/matmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ end
function matmuladd!(C::AbstractMatrix, ::LoopedArrayOp, A::AbstractMatrix,
B::AbstractMatrix, bias::AbstractVector)
if unrolled_any((256), (size(C, 1), size(A, 2), size(B, 2))) &&
unrolled_all((1024), (size(C, 1), size(A, 2), size(B, 2))) &&
LoopVectorization.check_args(C, A, B)
__matmuladd_loopvec!(C, A, B, bias)
return
Expand Down Expand Up @@ -93,7 +92,6 @@ function matmul!(C::AbstractMatrix, ::AbstractInternalArrayOpMode,
end
function matmul!(C::AbstractMatrix, ::LoopedArrayOp, A::AbstractMatrix, B::AbstractMatrix)
if unrolled_any((256), (size(C, 1), size(A, 2), size(B, 2))) &&
unrolled_all((1024), (size(C, 1), size(A, 2), size(B, 2))) &&
LoopVectorization.check_args(C, A, B)
__matmul_loopvec!(C, A, B)
return
Expand Down

2 comments on commit 854ba3f

@avik-pal
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/112188

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.38 -m "<description of version>" 854ba3f42d31df6029d02d28bf3ad4e3b30a0f24
git push origin v0.3.38

Please sign in to comment.