Skip to content

Commit 8006bb7

Browse files
committed
Remove DistributionsAD
1 parent c10ae92 commit 8006bb7

File tree

6 files changed

+9
-15
lines changed

6 files changed

+9
-15
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
1717
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
1818
DifferentiationInterface = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63"
1919
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
20-
DistributionsAD = "ced4e74d-a319-5a8a-b0ac-84af2272839c"
2120
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
2221
DynamicPPL = "366bfd00-2699-11ea-058f-f148b4cae6d8"
2322
EllipticalSliceSampling = "cad2338a-1db2-11e9-3401-43bc07c9ede2"
@@ -60,7 +59,6 @@ Compat = "4.15.0"
6059
DataStructures = "0.18, 0.19"
6160
DifferentiationInterface = "0.7"
6261
Distributions = "0.25.77"
63-
DistributionsAD = "0.6"
6462
DocStringExtensions = "0.8, 0.9"
6563
DynamicHMC = "3.4"
6664
DynamicPPL = "0.40.6"

docs/make.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ links = InterLinks(
1111
"AbstractMCMC" => "https://turinglang.org/AbstractMCMC.jl/stable/",
1212
"ADTypes" => "https://sciml.github.io/ADTypes.jl/stable/",
1313
"AdvancedVI" => "https://turinglang.org/AdvancedVI.jl/stable/",
14-
"DistributionsAD" => "https://turinglang.org/DistributionsAD.jl/stable/",
1514
"OrderedCollections" => "https://juliacollections.github.io/OrderedCollections.jl/stable/",
1615
"Distributions" => "https://juliastats.org/Distributions.jl/stable/",
1716
)

docs/src/api.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,12 @@ LogPoisson
157157

158158
### Tools to work with distributions
159159

160-
| Exported symbol | Documentation | Description |
161-
|:--------------- |:-------------------------------------- |:-------------------------------------------------------------- |
162-
| `I` | [`LinearAlgebra.I`](@extref) | Identity matrix |
163-
| `filldist` | [`DistributionsAD.filldist`](@extref) | Create a product distribution from a distribution and integers |
164-
| `arraydist` | [`DistributionsAD.arraydist`](@extref) | Create a product distribution from an array of distributions |
165-
| `NamedDist` | [`DynamicPPL.NamedDist`](@extref) | A distribution that carries the name of the variable |
160+
| Exported symbol | Documentation | Description |
161+
|:--------------- |:--------------------------------- |:-------------------------------------------------------------- |
162+
| `I` | [`LinearAlgebra.I`](@extref) | Identity matrix |
163+
| `filldist` | [`DynamicPPL.filldist`](@extref) | Create a product distribution from a distribution and integers |
164+
| `arraydist` | [`DynamicPPL.arraydist`](@extref) | Create a product distribution from an array of distributions |
165+
| `NamedDist` | [`DynamicPPL.NamedDist`](@extref) | A distribution that carries the name of the variable |
166166

167167
### Point estimates
168168

src/Turing.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Turing
22

33
using Reexport, ForwardDiff
4-
using DistributionsAD, Bijectors, StatsFuns, SpecialFunctions
4+
using Bijectors, StatsFuns, SpecialFunctions
55
using Statistics, LinearAlgebra
66
using Libtask
77
@reexport using Distributions, MCMCChains
@@ -144,8 +144,8 @@ export
144144
LogPoisson,
145145
# Tools to work with Distributions
146146
I, # LinearAlgebra
147-
filldist, # DistributionsAD
148-
arraydist, # DistributionsAD
147+
filldist, # DynamicPPL
148+
arraydist, # DynamicPPL
149149
NamedDist, # DynamicPPL
150150
# Predictions - DynamicPPL
151151
predict,

src/mcmc/Inference.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ using DynamicPPL:
1616
Model,
1717
DefaultContext
1818
using Distributions, Libtask, Bijectors
19-
using DistributionsAD: VectorOfMultivariate
2019
using LinearAlgebra
2120
using ..Turing: PROGRESS, Turing
2221
using StatsFuns: logsumexp

test/Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Clustering = "aaaa29a8-35af-508c-8bc3-b662a17a0fe5"
1212
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
1313
DifferentiationInterface = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63"
1414
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
15-
DistributionsAD = "ced4e74d-a319-5a8a-b0ac-84af2272839c"
1615
DynamicHMC = "bbc10e6e-7c05-544b-b16e-64fede858acb"
1716
DynamicPPL = "366bfd00-2699-11ea-058f-f148b4cae6d8"
1817
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
@@ -54,7 +53,6 @@ Clustering = "0.14, 0.15"
5453
Combinatorics = "1"
5554
DifferentiationInterface = "0.7"
5655
Distributions = "0.25"
57-
DistributionsAD = "0.6.3"
5856
DynamicHMC = "2.1.6, 3.0"
5957
DynamicPPL = "0.40.6"
6058
FiniteDifferences = "0.10.8, 0.11, 0.12"

0 commit comments

Comments
 (0)