Skip to content

Commit

Permalink
Temporarilly don't test a certain integer product when CPU doesn't ha…
Browse files Browse the repository at this point in the history
…ve AVX2.
  • Loading branch information
chriselrod committed Jun 27, 2020
1 parent ce5e7d8 commit 574e34e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions test/gemm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -828,12 +828,17 @@
@test Cs C2
fill!(Cs, 9999.999); AmulB2x2_avx!(Cs, Ats', Bs)
@test Cs C2
fill!(Cs, 9999.999); AtmulB_avx1!(Cs, Ats, Bs)
@test Cs C2
#TODO: remove these checks
if LoopVectorization.VectorizationBase.SIMD_NATIVE_INTEGERS || Base.libllvm_version > v"7"
fill!(Cs, 9999.999); AtmulB_avx1!(Cs, Ats, Bs)
@test Cs C2
end
fill!(Cs, 9999.999); AtmulB_avx1!(Cs, As', Bs)
@test Cs C2
fill!(Cs, 9999.999); AtmulB_avx2!(Cs, Ats, Bs);
@test Cs C2
if LoopVectorization.VectorizationBase.SIMD_NATIVE_INTEGERS || Base.libllvm_version > v"7"
fill!(Cs, 9999.999); AtmulB_avx2!(Cs, Ats, Bs);
@test Cs C2
end
fill!(Cs, 9999.999); AtmulB_avx2!(Cs, As', Bs);
@test Cs C2
fill!(Cs, 9999.999); mulCAtB_2x2block_avx!(Cs, Ats, Bs);
Expand Down

2 comments on commit 574e34e

@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/17050

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.8.8 -m "<description of version>" 574e34ec18d962cef4545a4092cff14dbd52700e
git push origin v0.8.8

Please sign in to comment.