Skip to content

Commit

Permalink
any -> py:func
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiics committed Mar 20, 2020
1 parent d6efc02 commit 8f8f4c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorials/relay_quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@
# Currently this value can be 0 to 3. The optimization passes include
# operator fusion, pre-computation, layout transformation and so on.
#
# :any:`relay.build` returns three components: the execution graph in
# :py:func:`relay.build` returns three components: the execution graph in
# json format, the TVM module library of compiled functions specifically
# for this graph on the target hardware, and the parameter blobs of
# the model. During the compilation, Relay does the graph-level
# optimization while TVM does the tensor-level optimization, resulting
# in an optimized runtime module for model serving.
#
# We'll first compile for Nvidia GPU. Behind the scene, `relay.build`
# We'll first compile for Nvidia GPU. Behind the scene, :py:func:`relay.build`
# first does a number of graph-level optimizations, e.g. pruning, fusing, etc.,
# then registers the operators (i.e. the nodes of the optimized graphs) to
# TVM implementations to generate a `tvm.module`.
Expand Down

0 comments on commit 8f8f4c9

Please sign in to comment.