Skip to content

Commit

Permalink
basic doc building setup
Browse files Browse the repository at this point in the history
  • Loading branch information
pluskid committed Oct 19, 2015
1 parent edf0871 commit aa18e98
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 8 additions & 0 deletions docs/build.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using MXNet
using Lexicon

config = Config(md_permalink = false, mathjax = true)

index = save("api/MXNet.md", MXNet.mx, config)
save("api/index.md", Index([index]), config; md_subheader = :category)

2 changes: 0 additions & 2 deletions src/init.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
export MXError

"Exception thrown when an error occurred calling MXNet API."
immutable MXError <: Exception
msg :: AbstractString
Expand Down
2 changes: 0 additions & 2 deletions src/ndarray.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
export NDArray

# create a NDArray handle of specific shape
function _ndarray_alloc{N}(shape :: NTuple{N, Int}, ctx :: Context, delay_alloc :: Bool)
h_ref = Ref{MX_handle}(0)
Expand Down

0 comments on commit aa18e98

Please sign in to comment.