Skip to content

Commit

Permalink
Bump version, remove unused files, and hopefully get tabgot to build …
Browse files Browse the repository at this point in the history
…docs
  • Loading branch information
chriselrod committed Jan 12, 2021
1 parent f2b2bbd commit 3482ac5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 1,533 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
issue_comment:
types:
- created
workflow_dispatch:
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SLEEFPirates"
uuid = "476501e8-09a2-5ece-8869-fb82de89a1fa"
authors = ["chriselrod <elrodc@gmail.com>"]
version = "0.6.4"
version = "0.6.5"

[deps]
IfElse = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173"
Expand All @@ -10,7 +10,7 @@ VectorizationBase = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f"

[compat]
IfElse = "0.1"
VectorizationBase = "0.15"
VectorizationBase = "0.15.2"
julia = "1.5"

[extras]
Expand Down
6 changes: 0 additions & 6 deletions src/SLEEFPirates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,6 @@ include("misc.jl") # miscallenous math functions including pow and cbrt
# @warn "Building SLEEFPirates is likely to increase performance of some functions."
# end
# end
# include("lgamma.jl")
# include("sleef.jl")
# include("xsimd.jl")

# fallback definitions

Expand Down Expand Up @@ -196,9 +193,6 @@ max_tanh(::Type{Float32}) = 9.01091333982870836998903767124472049880557292031727
# Division is faster than approximate inversion in
# t = Base.FastMath.mul_fast(exp2xm1, Base.FastMath.inv_fast(Base.FastMath.add_fast(exp2xm1, typeof(x)(2))))
t = exp2xm1 / Base.FastMath.add_fast(exp2xm1, typeof(x)(2))
#ponemask = x > max_tanh(eltype(x))
#nonemask = x < -max_tanh(eltype(x))
#ifelse(ponemask, one(x), ifelse(nonemask, -one(x), t))
ifelse(abs(x) > max_tanh(eltype(x)), copysign(one(x), x), t)
end

Expand Down
59 changes: 0 additions & 59 deletions src/lgamma.jl

This file was deleted.

Loading

2 comments on commit 3482ac5

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

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.6.5 -m "<description of version>" 3482ac5d31dc7600c66194920e1dc23a39171986
git push origin v0.6.5

Please sign in to comment.