Skip to content

Commit 335cabf

Browse files
move mldatasets2gnngraph
1 parent 98da3f8 commit 335cabf

File tree

10 files changed

+7
-50
lines changed

10 files changed

+7
-50
lines changed

GNNGraphs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GNNGraphs"
22
uuid = "aed8fd31-079b-4b5a-b342-a13352159b8c"
33
authors = ["Carlo Lucibello and contributors"]
4-
version = "1.0.1"
4+
version = "1.1.0"
55

66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

GNNGraphs/src/GNNGraphs.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,7 @@ export sort_edge_index, color_refinement
108108
include("gatherscatter.jl")
109109
# _gather, _scatter
110110

111+
include("mldatasets.jl")
112+
export mldataset2gnngraph
113+
111114
end #module
File renamed without changes.
File renamed without changes.

GNNGraphs/test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ tests = [
3636
"sampling",
3737
"gnnheterograph",
3838
"temporalsnapshotsgnngraph",
39+
"mldatasets",
3940
"ext/SimpleWeightedGraphs"
4041
]
4142

GNNlib/src/GNNlib.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ export
3131
xi_sub_xj,
3232
xj_sub_xi,
3333
e_mul_xj,
34-
w_mul_xj,
35-
# mldatasets
36-
mldataset2gnngraph
34+
w_mul_xj
3735

3836
## The following methods are defined but not exported
3937

@@ -78,7 +76,6 @@ include("layers/conv.jl")
7876
include("layers/temporalconv.jl")
7977
include("layers/pool.jl")
8078
include("msgpass.jl")
81-
include("mldatasets.jl")
8279

8380
end #module
8481

Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,10 @@ DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
4848
FiniteDifferences = "26cc04aa-876d-5657-8c51-4c34ba976000"
4949
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
5050
InlineStrings = "842dd82b-1e85-43dc-bf29-5d0ee9dffc48"
51-
MLDatasets = "eb30cadb-4394-5ae3-aed4-317e484a6458"
5251
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
5352
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
5453
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
5554
cuDNN = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd"
5655

5756
[targets]
58-
test = ["Test", "Adapt", "DataFrames", "InlineStrings", "SparseArrays", "Graphs", "Zygote", "FiniteDifferences", "ChainRulesTestUtils", "MLDatasets", "CUDA", "cuDNN"]
57+
test = ["Test", "Adapt", "DataFrames", "InlineStrings", "SparseArrays", "Graphs", "Zygote", "FiniteDifferences", "ChainRulesTestUtils", "CUDA", "cuDNN"]

src/GraphNeuralNetworks.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ include("layers/heteroconv.jl")
9393
include("layers/temporalconv.jl")
9494
include("layers/pool.jl")
9595
include("msgpass.jl")
96-
include("mldatasets.jl")
9796
include("deprecations.jl")
9897

9998
end

src/mldatasets.jl

Lines changed: 0 additions & 41 deletions
This file was deleted.

test/runtests.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ tests = [
3131
"layers/heteroconv",
3232
"layers/temporalconv",
3333
"layers/pool",
34-
"mldatasets",
3534
"examples/node_classification_cora",
3635
]
3736

0 commit comments

Comments
 (0)