Skip to content

Commit

Permalink
add pow_fast
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Oct 8, 2022
1 parent 6883ff0 commit c20c4de
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/condense_loopset.jl
Original file line number Diff line number Diff line change
Expand Up @@ -920,6 +920,7 @@ can_turbo(::typeof(ifelse), ::Val{3}) = true
can_turbo(::typeof(!), ::Val{1}) = true
can_turbo(::typeof(^), ::Val{2}) = true
can_turbo(::typeof(Base.literal_pow), ::Val{3}) = true
can_turbo(::typeof(Base.FastMath.pow_fast), ::Val{2}) = true

"""
check_turbo_safe(ls::LoopSet)
Expand Down

2 comments on commit c20c4de

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

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.12.133 -m "<description of version>" c20c4ded8450ddf1fc72fd58b18de7d063d8bb22
git push origin v0.12.133

Please sign in to comment.