Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dgl
Commits
cd4f0a2b
Unverified
Commit
cd4f0a2b
authored
Mar 08, 2019
by
Minjie Wang
Committed by
GitHub
Mar 08, 2019
Browse files
[Release] update version (#440)
* update version * update news
parent
8651be54
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
4 deletions
+47
-4
NEWS.md
NEWS.md
+43
-0
conda/dgl/meta.yaml
conda/dgl/meta.yaml
+1
-1
include/dgl/runtime/c_runtime_api.h
include/dgl/runtime/c_runtime_api.h
+1
-1
python/dgl/_ffi/libinfo.py
python/dgl/_ffi/libinfo.py
+1
-1
python/update_version.py
python/update_version.py
+1
-1
No files found.
NEWS.md
View file @
cd4f0a2b
...
...
@@ -3,6 +3,49 @@ DGL release and change logs
Refer to the roadmap issue for the on-going versions and features.
0.
2
---
Major release that includes many features, bugfix and performance improvement.
Speed of GCN model on Pubmed dataset has been improved by
**4.19x**
! Speed of
RGCN model on Mutag dataset has been improved by
**7.35x**
! Important new
feature:
**graph sampling APIs**
.
Update details:
# Model examples
-
[x] TreeLSTM w/ MXNet (PR #279 by @szha )
-
[x] GraphSage (@ZiyueHuang )
-
[x] Improve GAT model speed (PR #348 by @jermainewang )
# Core system improvement
-
[x] Immutable CSR graph structure (PR #342 by @zheng-da )
-
[x] Finish remaining functionality (Issue #369, PR #404 by @yzh119)
-
[x] Nodeflow data structure (PR #361 by @zheng-da )
-
[x] Neighbor sampler (PR #322 )
-
[x] Layer-wise sampler (PR #362 by @GaiYu0 )
-
[x] Multi-GPU support by data parallelism (PR #356 #338 by @ylfdq1118 )
-
[x] More dataset:
-
[x] Reddit dataset loader (PR #372 by @ZiyueHuang )
-
[x] PPI dataset loader (PR #395 by @sufeidechabei )
-
[x] Mini graph classification dataset (PR #364 by @mufeili )
-
[x] NN modules (PR #406 by @jermainewang @mufeili)
-
[x] GraphConv layer
-
[x] Edge softmax layer
-
[x] Edge group apply API (PR #358 by @VoVAllen )
-
[x] Reversed graph and transform.py module (PR #331 by @mufeili )
-
[x] Max readout (PR #341 by @mufeili )
-
[x] Random walk APIs (PR #392 by @BarclayII )
# Tutorial/Blog
-
[x] Batched graph classification in DGL (PR #360 by @mufeili )
-
[x] Understanding GAT (@sufeidechabei )
# Project improvement
-
[x] Python lint check (PR #330 by @jermainewang )
-
[x] Win CI (PR #324 by @BarclayII )
-
[x] Auto doc build (by @VoVAllen )
-
[x] Unify tests for different backends (PR #333 by @BarclayII )
0.
1.3
-----
Bug fix
...
...
conda/dgl/meta.yaml
View file @
cd4f0a2b
package
:
name
:
dgl
version
:
"
0.
1.3
"
version
:
"
0.
2
"
source
:
git_rev
:
0.1.x
...
...
include/dgl/runtime/c_runtime_api.h
View file @
cd4f0a2b
...
...
@@ -33,7 +33,7 @@
#endif
// DGL version
#define DGL_VERSION "0.
1.3
"
#define DGL_VERSION "0.
2
"
// DGL Runtime is DLPack compatible.
...
...
python/dgl/_ffi/libinfo.py
View file @
cd4f0a2b
...
...
@@ -87,4 +87,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
# We use the version of the incoming release for code
# that is under development.
# The following line is set by dgl/python/update_version.py
__version__
=
"0.
1.3
"
__version__
=
"0.
2
"
python/update_version.py
View file @
cd4f0a2b
...
...
@@ -11,7 +11,7 @@ import re
# current version
# We use the version of the incoming release for code
# that is under development
__version__
=
"0.
1.3
"
__version__
=
"0.
2
"
# Implementations
def
update
(
file_name
,
pattern
,
repl
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment