You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by ma...@apache.org on 2019/10/03 11:25:24 UTC

[incubator-mxnet] branch master updated: Julia: add API docs back (#16363)

This is an automated email from the ASF dual-hosted git repository.

marcoabreu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 3244a7a  Julia: add API docs back (#16363)
3244a7a is described below

commit 3244a7ac741e5046f91f20062109e03772a7650c
Author: Apua <ap...@users.noreply.github.com>
AuthorDate: Thu Oct 3 19:24:55 2019 +0800

    Julia: add API docs back (#16363)
    
    `ndarray` and `symbolic-node` have been refactored by splitting into a
    few files in commits ed8307121 and 36a3cb828, but the corresponding
    document setting for MXNet.jl is not updated yet.
    
    List all split source files into the `at_autodoc` setting.
    
    Also refer to the `at_autodoc` setting in `julia/docs/src/api/optimizer.md`
---
 julia/docs/src/api/ndarray.md       | 18 +++++++++++++++++-
 julia/docs/src/api/symbolic-node.md | 11 ++++++++++-
 2 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/julia/docs/src/api/ndarray.md b/julia/docs/src/api/ndarray.md
index 8cc4948..64f59dc 100644
--- a/julia/docs/src/api/ndarray.md
+++ b/julia/docs/src/api/ndarray.md
@@ -70,5 +70,21 @@ In the following example `y` can be a `Real` value or another `NDArray`
 
 ```@autodocs
 Modules = [MXNet.mx]
-Pages = ["ndarray.jl"]
+Pages = [
+  "ndarray.jl",
+  "ndarray/activation.jl",
+  "ndarray/arithmetic.jl",
+  "ndarray/array.jl",
+  "ndarray/autoimport.jl",
+  "ndarray/comparison.jl",
+  "ndarray/context.jl",
+  "ndarray/io.jl",
+  "ndarray/linalg.jl",
+  "ndarray/reduction.jl",
+  "ndarray/remap.jl",
+  "ndarray/show.jl",
+  "ndarray/statistic.jl",
+  "ndarray/trig.jl",
+  "ndarray/type.jl",
+]
 ```
diff --git a/julia/docs/src/api/symbolic-node.md b/julia/docs/src/api/symbolic-node.md
index b4b1c01..0efe460 100644
--- a/julia/docs/src/api/symbolic-node.md
+++ b/julia/docs/src/api/symbolic-node.md
@@ -19,5 +19,14 @@
 
 ```@autodocs
 Modules = [MXNet.mx]
-Pages = ["symbolic-node.jl"]
+Pages = [
+  "symbolic-node.jl",
+  "symbolic-node/arithmetic.jl",
+  "symbolic-node/array.jl",
+  "symbolic-node/autodiff.jl",
+  "symbolic-node/io.jl",
+  "symbolic-node/op.jl",
+  "symbolic-node/show.jl",
+  "symbolic-node/type.jl",
+]
 ```