We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c969bdf commit 296723cCopy full SHA for 296723c
Project.toml
@@ -1,6 +1,6 @@
1
name = "ChainRules"
2
uuid = "082447d4-558c-5d27-93f4-14fc19e9eca2"
3
-version = "0.2.0"
+version = "0.2.1"
4
5
[deps]
6
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
src/rulesets/packages/NaNMath.jl
module NaNMathGlue
using ChainRulesCore
-using NaNMath
+using ..NaNMath
@scalar_rule(NaNMath.sin(x), NaNMath.cos(x))
@scalar_rule(NaNMath.cos(x), -NaNMath.sin(x))
src/rulesets/packages/SpecialFunctions.jl
module SpecialFunctionsGlue
-using SpecialFunctions
+using ..SpecialFunctions
@scalar_rule(SpecialFunctions.lgamma(x), SpecialFunctions.digamma(x))
0 commit comments