Skip to content

Commit

Permalink
Merge pull request #29 from JuliaSIMD/remove-precompile
Browse files Browse the repository at this point in the history
No precompile
  • Loading branch information
chriselrod authored Jan 25, 2023
2 parents 6516e64 + 5682072 commit 251075c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TriangularSolve"
uuid = "d5829a12-d9aa-46ab-831f-fb7c9ab06edf"
authors = ["chriselrod <[email protected]> and contributors"]
version = "0.1.17"
version = "0.1.18"

[deps]
CloseOpenIntervals = "fb6a15b2-703c-40df-9091-08a04967cfa9"
Expand All @@ -10,7 +10,6 @@ LayoutPointers = "10f19ff3-798f-405d-979b-55457f8fc047"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
LoopVectorization = "bdcacae8-1622-11e9-2a5c-532679323890"
Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588"
SnoopPrecompile = "66db9d55-30c0-4569-8b51-7e840670fc0c"
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
VectorizationBase = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f"

Expand All @@ -20,7 +19,6 @@ IfElse = "0.1"
LayoutPointers = "0.1.2"
LoopVectorization = "0.12.30"
Polyester = "0.4, 0.5, 0.6, 0.7"
SnoopPrecompile = "1"
Static = "0.2, 0.3, 0.4, 0.6, 0.7, 0.8"
VectorizationBase = "0.21"
julia = "1.5"
Expand Down
3 changes: 2 additions & 1 deletion src/TriangularSolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ function __init__()
Vector{UInt8}(undef, 3VectorizationBase.register_size() * 128)
end
end

#=
using SnoopPrecompile
@static if VERSION >= v"1.8.0-beta1"
@precompile_setup begin
Expand All @@ -756,4 +756,5 @@ using SnoopPrecompile
end
end
end
=#
end

2 comments on commit 251075c

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

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.1.18 -m "<description of version>" 251075c7ea307206de17da7abab91b3308e0f579
git push origin v0.1.18

Please sign in to comment.