File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ using DocumenterInterLinks
9
9
10
10
links = InterLinks (
11
11
" DynamicPPL" => " https://turinglang.org/DynamicPPL.jl/stable/objects.inv" ,
12
+ " AbstractMCMC" => " https://turinglang.org/AbstractMCMC.jl/stable/objects.inv" ,
12
13
" AbstractPPL" => " https://turinglang.org/AbstractPPL.jl/dev/objects.inv" ,
13
14
" ADTypes" => " https://sciml.github.io/ADTypes.jl/stable/objects.inv" ,
14
15
" AdvancedVI" => " https://turinglang.org/AdvancedVI.jl/v0.2.8/objects.inv" ,
Original file line number Diff line number Diff line change @@ -43,9 +43,12 @@ even though [`Prior()`](@ref) is actually defined in the `Turing.Inference` modu
43
43
44
44
### Inference
45
45
46
- | Exported symbol | Documentation | Description |
47
- | :--------------- | :------------------------------------------------------------------------------------------------ | :------------------- |
48
- | ` sample ` | [ ` StatsBase.sample ` ] ( https://turinglang.org/AbstractMCMC.jl/stable/api/#Sampling-a-single-chain ) | Sample from a model |
46
+ | Exported symbol | Documentation | Description |
47
+ | :--------------- | :------------------------------------------------------------------------------------------------ | :------------------- |
48
+ | ` sample ` | [ ` StatsBase.sample ` ] ( https://turinglang.org/AbstractMCMC.jl/stable/api/#Sampling-a-single-chain ) | Sample from a model |
49
+ | ` MCMCThreads ` | [ ` AbstractMCMC.MCMCThreads ` ] ( @extref ) | Run MCMC using multiple threads |
50
+ | ` MCMCDistributed ` | [ ` AbstractMCMC.MCMCDistributed ` ] ( @extref ) | Run MCMC using multiple processes |
51
+ | ` MCMCSerial ` | [ ` AbstractMCMC.MCMCSerial ` ] ( @extref ) | Run MCMC using without parallelism |
49
52
50
53
### Samplers
51
54
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ using Reexport, ForwardDiff
4
4
using DistributionsAD, Bijectors, StatsFuns, SpecialFunctions
5
5
using Statistics, LinearAlgebra
6
6
using Libtask
7
- @reexport using Distributions, MCMCChains, AbstractMCMC
7
+ @reexport using Distributions, MCMCChains
8
8
using Compat: pkgversion
9
9
10
10
using AdvancedVI: AdvancedVI
@@ -15,6 +15,7 @@ using NamedArrays: NamedArrays
15
15
using Accessors: Accessors
16
16
using StatsAPI: StatsAPI
17
17
using StatsBase: StatsBase
18
+ using AbstractMCMC
18
19
19
20
using Accessors: Accessors
20
21
@@ -136,6 +137,9 @@ export
136
137
ADVI,
137
138
# AbstractMCMC
138
139
sample,
140
+ MCMCThreads,
141
+ MCMCDistributed,
142
+ MCMCSerial,
139
143
# ADTypes
140
144
AutoForwardDiff,
141
145
AutoReverseDiff,
You can’t perform that action at this time.
0 commit comments