Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor changes towards GPU compatibility #236

Merged
merged 29 commits into from
Mar 31, 2022
Merged
Show file tree
Hide file tree
Changes from 28 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
becacaa
return lazy Fill arrays for mean functions from #197
st-- Oct 28, 2021
c42402b
replace Diagonal(Fill(...)) with PDMats.ScalMat
st-- Oct 28, 2021
6cc507f
add tr_Cf_invΣy method for ScalMat & tests
st-- Oct 28, 2021
15143be
_cholesky for ScalMat and remove superfluous _symmetric() calls
st-- Oct 28, 2021
a95cf54
update deprecated call
st-- Oct 28, 2021
553d7ec
Merge branch 'master' into st/gpuprep
st-- Oct 28, 2021
8159deb
standard fallback for ScalMat
st-- Oct 28, 2021
236bdc1
Merge branch 'st/gpuprep' of github.com:JuliaGaussianProcesses/Abstra…
st-- Oct 28, 2021
aec60e2
update Manifests
st-- Oct 29, 2021
feba01e
Merge branch 'master' of github.com:JuliaGaussianProcesses/AbstractGP…
st-- Nov 2, 2021
4f5d112
Merge branch 'master' into st/gpuprep
st-- Nov 3, 2021
3339dce
Merge branch 'st/gpuprep' of github.com:JuliaGaussianProcesses/Abstra…
st-- Mar 30, 2022
48f9b23
Merge branch 'master' of github.com:JuliaGaussianProcesses/AbstractGP…
st-- Mar 30, 2022
30a20b5
revert change that is separated into #239
st-- Mar 30, 2022
694fd36
_symmetric(X::AbstractPDMat) = X
st-- Mar 30, 2022
d41a59b
restrict type parameter
st-- Mar 30, 2022
a0ae96d
restrict further
st-- Mar 30, 2022
03c46a5
Update src/finite_gp_projection.jl
st-- Mar 30, 2022
7127868
compat
st-- Mar 30, 2022
ab2c0a1
compat
st-- Mar 30, 2022
de926ce
Update src/sparse_approximations.jl
st-- Mar 30, 2022
fd075f2
Merge branch 'master' of github.com:JuliaGaussianProcesses/AbstractGP…
st-- Mar 30, 2022
2567571
Merge branch 'st/gpuprep' of github.com:JuliaGaussianProcesses/Abstra…
st-- Mar 30, 2022
569718c
version bump
st-- Mar 30, 2022
3576ab3
fix Manifest
st-- Mar 30, 2022
eeaee74
remove "breaking" change, someone else can handle this elsewhere
st-- Mar 30, 2022
ba04b9d
Merge branch 'master' into st/gpuprep
st-- Mar 30, 2022
9321393
update docs/Manifest
st-- Mar 30, 2022
9568b1a
update Manifests
st-- Mar 31, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AbstractGPs"
uuid = "99985d1d-32ba-4be9-9821-2ec096f28918"
authors = ["JuliaGaussianProcesses Team"]
version = "0.5.9"
version = "0.5.10"
st-- marked this conversation as resolved.
Show resolved Hide resolved

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand All @@ -10,6 +10,7 @@ FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
IrrationalConstants = "92d709cd-6900-40b7-9082-c6be49f344b6"
KernelFunctions = "ec8451be-7e33-11e9-00cf-bbf324bd1392"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
PDMats = "90014a1f-27ba-587c-ab20-58faa44d9150"
st-- marked this conversation as resolved.
Show resolved Hide resolved
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
Expand All @@ -23,6 +24,7 @@ Distributions = "0.19, 0.20, 0.21, 0.22, 0.23, 0.24, 0.25"
FillArrays = "0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13"
IrrationalConstants = "0.1"
KernelFunctions = "0.9, 0.10"
PDMats = "0.11"
RecipesBase = "1"
Reexport = "0.2, 1"
StatsBase = "0.33"
Expand Down
Loading