Skip to content

Commit 42c498f

Browse files
authored
don't precompile for Float32/ComplexF32 (#381)
* don't precompile for Float32/ComplexF32 * bump version to v0.17.32
1 parent 12e9857 commit 42c498f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "BandedMatrices"
22
uuid = "aae01518-5342-5314-be14-df237901396f"
3-
version = "0.17.31"
3+
version = "0.17.32"
44

55
[deps]
66
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"

src/precompile.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using PrecompileTools
22

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

0 commit comments

Comments
 (0)