From 06ff9eb361e47e5400caf5310e6ae202b0fe8354 Mon Sep 17 00:00:00 2001 From: Logan Weber Date: Fri, 29 Mar 2019 23:50:30 -0700 Subject: [PATCH] Mooooore iteration --- docs/dev/relay_add_pass.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/dev/relay_add_pass.rst b/docs/dev/relay_add_pass.rst index 1eb123b10ee9a..235147ed18d6f 100644 --- a/docs/dev/relay_add_pass.rst +++ b/docs/dev/relay_add_pass.rst @@ -327,8 +327,7 @@ Registering an API Endpoint ~~~~~~~~~~~~~~~~~~~~~~~~~~~ With the AST traversers written, the pass can be registered to become a TVM -API endpoint (more detail can be found in :doc:`runtime.md`). In order to -register the pass, we need the following code snippet: +API endpoint with the following code snippet: .. code:: c @@ -338,4 +337,5 @@ register the pass, we need the following code snippet: }); And the pass can now be used in C++ and Python, though it's a good idea to -wrap the API in Python, as described in :ref:`relay-add-op`. +wrap the API in Python, as described in :ref:`relay-add-op`. More detail +about registration can be found in :doc:`runtime.md`.