Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

Commit 3b3eb6e

Browse files
committed
[Doc] Release 0.2.0
1 parent 73cf871 commit 3b3eb6e

File tree

5 files changed

+21
-3
lines changed

5 files changed

+21
-3
lines changed

docsrc/source/_static/algorithm-1.png

107 KB
Loading

docsrc/source/_static/algorithm-2.png

234 KB
Loading

docsrc/source/pages/changelog.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,25 @@
1111
- 使得SubgraphDetection可以被安装
1212
- 文档
1313
- 添加了文档
14-
14+
- 2020-09-17 **Release v0.2.0** 调优了一些功能
15+
- 特性
16+
- 添加了终端运行支持
17+
- 添加了配置调整接口
18+
- 使得SubgraphDetection可以被安装
19+
- 添加子图实例最大节点数限制
20+
- 添加Scope型节点
21+
- 每个Parameter和constant节点拥有其独自的id
22+
- 使用全局的id代替原来的局部id
23+
- 添加了分层次的子图挖掘
24+
- 在结果中使用节点名称代替节点id
25+
- 添加了更多的配置项
26+
- SCOPE_BOUNDARY
27+
- DETAILED_ISOMORPHIC_CHECK
28+
- SKIPPED_LEVEL
29+
- 文档
30+
- 更新和调整了文档
31+
- 测试
32+
- 添加非自动的网格测试
1533
## 修订版本
1634

1735
- 2020-06-24 **Tag v0.0.1** Tag初始版本,实现了基本功能,添加了示例

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='SubgraphDetection',
15-
version='0.1.2',
15+
version='0.2.0',
1616
description=(
1717
'Detect the subgraph in a mindspore computational graph'
1818
),

src/SubgraphDetection/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.2"
1+
__version__ = "0.2.0"
22

33
from SubgraphDetection.__main__ import detect_subgraph
44

0 commit comments

Comments
 (0)