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("* * * * * * * * * * * * * * * * * * * * * * * * * * * * *")
1010
1111cmake_minimum_required (VERSION 3.5.0)
1212
13- project (CGraph VERSION 3.1.0 )
13+ project (CGraph VERSION 3.1.1 )
1414
1515# CGraph默认使用C++11版本,推荐使用C++17版本。暂不支持C++11以下版本
1616set (CMAKE_CXX_STANDARD 11)
Original file line number Diff line number Diff line change 4444----
4545
4646## 二. 入门Demo
47- > C++ 版本
47+ > < b > C++ 版本</ b >
4848``` cpp
4949#include " CGraph.h"
5050
@@ -94,7 +94,7 @@ int main() {
9494<br>
9595如上图所示,图结构执行的时候,首先执行`a`节点。`a`节点执行完毕后,并行执行`b`和`c`节点。`b`和`c`节点全部执行完毕后,再执行`d`节点。
9696
97- > Python 版本
97+ > <b> Python 版本</b>
9898
9999```python
100100import time
@@ -128,7 +128,7 @@ if __name__ == '__main__':
128128 pipeline.process()
129129```
130130
131- > 其他版本
131+ > <b> 其他版本</b>
132132
133133* [CsCGraph](https:// github.com/ChunelFeng/CsCGraph) : A CSharp native, CGraph-API-liked DAG project
134134* [JaCGraph](https:// github.com/ChunelFeng/JaCGraph) : A Java native, CGraph-API-liked DAG project
@@ -399,7 +399,7 @@ if __name__ == '__main__':
399399* 提供 Python 和 C++ 混合编程功能
400400* 提供 Python 打包功能,支持 `pip3 install PyCGraph` 安装
401401
402- [2025.06.14 - v3.1.1 - Chunel]
402+ [2025.06.15 - v3.1.1 - Chunel]
403403* 提供 C# 和 Java 版本
404404* 提供 `CODE_OF_CONDUCT.md` 文档
405405
Original file line number Diff line number Diff line change 1111import pybind11
1212
1313__PYCGRAPH_NAME__ = "PyCGraph"
14- __PYCGRAPH_VERSION__ = "3.1.0 "
14+ __PYCGRAPH_VERSION__ = "3.1.1 "
1515__PYCGRAPH_AUTHOR__ = "Chunel"
1616__PYCGRAPH_AUTHOR_EMAIL__ = "[email protected] " 1717__PYCGRAPH_DESCRIPTION__ = "CGraph with python api wrapper by pybind11"
Original file line number Diff line number Diff line change 22set_project (" CGraph" )
33
44-- set project version
5- set_version (" 3.1.0 " )
5+ set_version (" 3.1.1 " )
66
77-- set language: c++11
88set_languages (" c++11" )
You can’t perform that action at this time.
0 commit comments