v0.30.0
What's Changed
- Replaced specifying a global AD backend with
ADTypes.jl
. Users should now specify the desiredADType
directly in sampler constructors, e.g.,HMC(0.1, 10; adtype=AutoForwardDiff(; chunksize))
, orHMC(0.1, 10; adtype=AutoReverseDiff(false))
(false
indicates not to use compiled tape). - Interface functions such as
ADBackend
,setadbackend
,setadsafe
,setchunksize
, andsetrdcache
are deprecated and will be removed in a future release. - Removed the outdated
verifygrad
function. - Updated to a newer version of
LogDensityProblemsAD
(v1.7).
New Contributors
Full Changelog: v0.29.3...v0.30.0