Skip to content

Commit a30ddcf

Browse files
Add AbstractIrrational to list of types for TrackedReal promote_rule definitions (#257)
* Update ReverseDiff.jl * Add test for AbstractIrrational promotion
1 parent 7dac2d9 commit a30ddcf

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Project.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ DiffRules = "1.4"
2424
DiffTests = "< 0.1.2"
2525
ForwardDiff = "0.10"
2626
FunctionWrappers = "1"
27+
IrrationalConstants = "0.2"
2728
LogExpFunctions = "0.3"
2829
MacroTools = "0.5"
2930
NaNMath = "0.3, 1"
@@ -34,7 +35,8 @@ julia = "1"
3435
[extras]
3536
DiffTests = "de460e47-3fe3-5279-bb4a-814414816d5d"
3637
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
38+
IrrationalConstants = "92d709cd-6900-40b7-9082-c6be49f344b6"
3739
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3840

3941
[targets]
40-
test = ["DiffTests", "FillArrays", "Test"]
42+
test = ["DiffTests", "FillArrays", "IrrationalConstants", "Test"]

src/ReverseDiff.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ using ChainRulesCore
2424
# Not all operations will be valid over all of these types, but that's okay; such cases
2525
# will simply error when they hit the original operation in the overloaded definition.
2626
const ARRAY_TYPES = (:AbstractArray, :AbstractVector, :AbstractMatrix, :Array, :Vector, :Matrix)
27-
const REAL_TYPES = (:Bool, :Integer, :(Irrational{:ℯ}), :(Irrational{}), :Rational, :BigFloat, :BigInt, :AbstractFloat, :Real, :Dual)
27+
const REAL_TYPES = (:Bool, :Integer, :AbstractIrrational, :Rational, :BigFloat, :BigInt, :AbstractFloat, :Real, :Dual)
2828

2929
const SKIPPED_UNARY_SCALAR_FUNCS = Symbol[:isinf, :isnan, :isfinite, :iseven, :isodd, :isreal, :isinteger]
3030
const SKIPPED_BINARY_SCALAR_FUNCS = Symbol[:isequal, :isless, :<, :>, :(==), :(!=), :(<=), :(>=)]

test/TrackedTests.jl

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ using ReverseDiff, Test
44
using ReverseDiff: TrackedReal, TrackedArray
55

66
import ForwardDiff
7+
import IrrationalConstants: log2π
78

89
include(joinpath(dirname(@__FILE__), "utils.jl"))
910

@@ -609,6 +610,7 @@ empty!(tp)
609610
@test promote_type(T, Integer) === TrackedReal{BigInt,Float64,A}
610611
@test promote_type(T, typeof(ℯ)) === TrackedReal{BigFloat,Float64,A}
611612
@test promote_type(T, typeof(π)) === TrackedReal{BigFloat,Float64,A}
613+
@test promote_type(T, typeof(log2π)) === TrackedReal{BigFloat,Float64,A}
612614
@test promote_type(T, Rational{Int}) === TrackedReal{Rational{BigInt},Float64,A}
613615
@test promote_type(T, BigFloat) === TrackedReal{BigFloat,Float64,A}
614616
@test promote_type(T, BigInt) === T

0 commit comments

Comments
 (0)