Skip to content

Commit

Permalink
A test per day, and coverage will eventually be good.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Dec 24, 2020
1 parent cc9e6fd commit 6e90140
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,12 @@ end
end
@test tovector(@inferred(vm > vi2)) == (tovector(vm) .> tovector(vi2))
end
@testset "Lazymul" begin
# partially covered in memory
for i (-5, -1, 0, 1, 4, 8), j (-5, -1, 0, 1, 4, 8)
@test VectorizationBase.lazymul(StaticInt(i), StaticInt(j)) === VectorizationBase.lazymul_no_promote(StaticInt(i), StaticInt(j)) === StaticInt(i*j)
end
end
end

# ptr_A = pointer(A)
Expand Down

2 comments on commit 6e90140

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

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.14.8 -m "<description of version>" 6e90140813bb7e066b18eea5a606cf8bd4998ab1
git push origin v0.14.8

Please sign in to comment.