Skip to content

Commit

Permalink
don't precompile for Float32/ComplexF32 (#381)
Browse files Browse the repository at this point in the history
* don't precompile for Float32/ComplexF32

* bump version to v0.17.32
  • Loading branch information
jishnub committed Jul 21, 2023
1 parent 12e9857 commit 42c498f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "BandedMatrices"
uuid = "aae01518-5342-5314-be14-df237901396f"
version = "0.17.31"
version = "0.17.32"

[deps]
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
Expand Down
2 changes: 1 addition & 1 deletion src/precompile.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using PrecompileTools

@setup_workload begin
vs = ([1.0], Float32[1.0], ComplexF32[1.0], ComplexF64[1.0])
vs = ([1.0], ComplexF64[1.0])
Bs = Any[BandedMatrix(0 => v) for v in vs]
@compile_workload begin
for B in Bs, op in (+, -, *)
Expand Down

2 comments on commit 42c498f

@jishnub
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/87953

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.17.32 -m "<description of version>" 42c498f051a6bb4f2e4980d3e879c0d970ecd097
git push origin v0.17.32

Please sign in to comment.