index.rst 961 Bytes
Newer Older
1
.. core/constructing-graphs/index.rst:
2

3 4 5 6
.. _constructing_graphs:


Constructing Graphs
7
===================
8

9 10 11 12 13
.. toctree::
   :maxdepth: 1
   :caption: How to 

   execute.rst
14 15 16
   operator.rst
   update.rst
   derive-for-training.rst
17
   distribute-train.rst
18 19 20
   import.rst
   Using the Python API <../../python_api/index.rst>
       
21

22 23
The "How to" articles in this section explain how to build or construct graphs 
with nGraph components. The recipes are all framework agnostic; in other words, 
24 25 26
if an entity (framework or user) wishes to make use of target-based computational 
resources, it can either:

27
* Do the tasks programatically through a framework, or 
28 29
* Provide a serialized model that can be imported to run on one of the nGraph
  backends. 
30

31 32
.. note:: This section is aimed at intermediate-level developers. It assumes an
   understanding of the concepts in the previous sections. It does not assume 
33
   knowledge of any particular frontend framework.
34