Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 954b959

Browse filesBrowse files
authored
Implements GraphBuilder for the graph_api (#57)
* add graph_builder * documentation * documentation * remove some torch issues * better constant * fix tiny bug * tiny changes * add method check_order * fix unused * documentation * more coverge * improve code coverage
1 parent bd1a441 commit 954b959
Copy full SHA for 954b959

File tree

Expand file treeCollapse file tree

10 files changed

+1280
-0
lines changed
Filter options
Expand file treeCollapse file tree

10 files changed

+1280
-0
lines changed

‎.gitignore

Copy file name to clipboardExpand all lines: .gitignore
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ build/*
1414
*egg-info/*
1515
onnxruntime_profile*
1616
prof
17+
_doc/sg_execution_times.rst
1718
_doc/auto_examples/*
1819
_doc/examples/_cache/*
1920
_doc/examples/onnxruntime_profile*

‎CHANGELOGS.rst

Copy file name to clipboardExpand all lines: CHANGELOGS.rst
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Change Logs
44
0.1.3
55
+++++
66

7+
* :pr:`57`: implements GraphBuilder
78
* :pr:`49`: adds command line to export a model into code
89
* :pr:`48`: support for subgraph in light API
910
* :pr:`47`: extends export onnx to code to support inner API

‎_doc/api/graph_api.rst

Copy file name to clipboard
+16Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
========================
2+
onnx_array_api.graph_api
3+
========================
4+
5+
6+
GraphBuilder
7+
============
8+
9+
.. autoclass:: onnx_array_api.graph_api.GraphBuilder
10+
:members:
11+
12+
OptimizationOptions
13+
===================
14+
15+
.. autoclass:: onnx_array_api.graph_api.graph_builder.OptimizationOptions
16+
:members:

‎_doc/api/index.rst

Copy file name to clipboardExpand all lines: _doc/api/index.rst
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ API
77
:maxdepth: 1
88

99
array_api
10+
graph_api
1011
light_api
1112
npx_core_api
1213
npx_functions
Binary file not shown.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.