Commit 6ae9d947 authored by Leona C's avatar Leona C

Edit contents to remove distracting label and other editing

parent d7aefa10
...@@ -9,22 +9,29 @@ performed by a framework :term:`bridge` to execute a computation. In order to ...@@ -9,22 +9,29 @@ performed by a framework :term:`bridge` to execute a computation. In order to
successfully run a computation, the entity (framework or user) must be able to successfully run a computation, the entity (framework or user) must be able to
do all of these things: do all of these things:
.. contents:: * :ref:`define_cmp`
* :ref:`specify_bkd`
* :ref:`compile_cmp`
* :ref:`allocate_bkd_storage`
* :ref:`initialize_inputs`
* :ref:`invoke_cmp`
* :ref:`access_outputs`
.. _define_cmp: .. _define_cmp:
Define a Computation Define a Computation
==================== ====================
To a framework, a computation is simply a transformation of inputs to outputs. To a :term:`framework`, a computation is simply a transformation of inputs to
To a user, a computation is a function whose body is a dataflow graph. A outputs. To a user, a computation is a function whose body is a dataflow graph.
*framework bridge* would normally programmatically construct the graph from While a *framework bridge* can programmatically construct the graph from a
the framework's representation of the computation. Since nGraph is targeted framework's representation of the computation, graph construction can be somewhat
toward automatic construction, manual construction can be somewhat tedious. more tedious for users. Since nGraph is targeted toward automatic construction,
Here we deconstruct how this happens. we deconstruct here how this happens.
Most of the public portion of the nGraph API is in the ``ngraph`` namespace, Most of the public portion of the nGraph API is in the ``ngraph`` namespace, so
so we will omit the namespace. Use of namespaces other than ``std`` will be we will omit the namespace. Use of namespaces other than ``std`` will be
namespaces in ``ngraph``. For example, the ``op::Add`` refers to namespaces in ``ngraph``. For example, the ``op::Add`` refers to
``ngraph::op::Add``. ``ngraph::op::Add``.
...@@ -128,9 +135,8 @@ Invoke the computation ...@@ -128,9 +135,8 @@ Invoke the computation
.. TODO .. TODO
.. _access_output
.. _access_outputs:
Access the outputs Access the outputs
================== ==================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment