Skip to content

Commit

Permalink
Fix twogemms! test.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Apr 6, 2020
1 parent 89676e0 commit d30fb6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gemm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@
end

function twogemms!(Ab, Bb, Cb, A, B)
M, N = size(C); K = size(B,1)
M, N = size(Cb); K = size(B,1)
@avx for m in 1:M, k in 1:K, n in 1:N
Ab[m,k] += Cb[m,n] * B[k,n]
Bb[k,n] += A[m,k] * Cb[m,n]
Expand Down

2 comments on commit d30fb6e

@chriselrod
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/12390

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.6.29 -m "<description of version>" d30fb6e09005b638cc9d374987f85688c4e8fc5f
git push origin v0.6.29

Please sign in to comment.