File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ message("* * * * * * * * * * * * * * * * * * * * * * * * * * * * *")
10
10
11
11
cmake_minimum_required (VERSION 3.5.0)
12
12
13
- project (CGraph VERSION 3.1.0 )
13
+ project (CGraph VERSION 3.1.1 )
14
14
15
15
# CGraph默认使用C++11版本,推荐使用C++17版本。暂不支持C++11以下版本
16
16
set (CMAKE_CXX_STANDARD 11)
Original file line number Diff line number Diff line change 44
44
----
45
45
46
46
## 二. 入门Demo
47
- > C++ 版本
47
+ > < b > C++ 版本</ b >
48
48
``` cpp
49
49
#include " CGraph.h"
50
50
@@ -94,7 +94,7 @@ int main() {
94
94
<br>
95
95
如上图所示,图结构执行的时候,首先执行`a`节点。`a`节点执行完毕后,并行执行`b`和`c`节点。`b`和`c`节点全部执行完毕后,再执行`d`节点。
96
96
97
- > Python 版本
97
+ > <b> Python 版本</b>
98
98
99
99
```python
100
100
import time
@@ -128,7 +128,7 @@ if __name__ == '__main__':
128
128
pipeline.process()
129
129
```
130
130
131
- > 其他版本
131
+ > <b> 其他版本</b>
132
132
133
133
* [CsCGraph](https:// github.com/ChunelFeng/CsCGraph) : A CSharp native, CGraph-API-liked DAG project
134
134
* [JaCGraph](https:// github.com/ChunelFeng/JaCGraph) : A Java native, CGraph-API-liked DAG project
@@ -399,7 +399,7 @@ if __name__ == '__main__':
399
399
* 提供 Python 和 C++ 混合编程功能
400
400
* 提供 Python 打包功能,支持 `pip3 install PyCGraph` 安装
401
401
402
- [2025.06.14 - v3.1.1 - Chunel]
402
+ [2025.06.15 - v3.1.1 - Chunel]
403
403
* 提供 C# 和 Java 版本
404
404
* 提供 `CODE_OF_CONDUCT.md` 文档
405
405
Original file line number Diff line number Diff line change 11
11
import pybind11
12
12
13
13
__PYCGRAPH_NAME__ = "PyCGraph"
14
- __PYCGRAPH_VERSION__ = "3.1.0 "
14
+ __PYCGRAPH_VERSION__ = "3.1.1 "
15
15
__PYCGRAPH_AUTHOR__ = "Chunel"
16
16
__PYCGRAPH_AUTHOR_EMAIL__ = "[email protected] "
17
17
__PYCGRAPH_DESCRIPTION__ = "CGraph with python api wrapper by pybind11"
Original file line number Diff line number Diff line change 2
2
set_project (" CGraph" )
3
3
4
4
-- set project version
5
- set_version (" 3.1.0 " )
5
+ set_version (" 3.1.1 " )
6
6
7
7
-- set language: c++11
8
8
set_languages (" c++11" )
You can’t perform that action at this time.
0 commit comments