dmlc / MXNet.jl

MXNet Julia Package - flexible and efficient deep learning in Julia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LoadError with julia 0.5.0-rc3

JockLawrie opened this issue · comments

Hi there,

Pkg.add("MXNet")    # compiles OK
using MXNet         # LoadError

The error is:

ERROR: LoadError: LoadError: LoadError: AssertionError: name must be of form 'Name <: SuperType'
 in include_from_node1(::String) at ./loading.jl:426 (repeats 3 times)
 in macro expansion; at ./none:2 [inlined]
 in anonymous at ./<missing>:?
 in eval(::Module, ::Any) at ./boot.jl:234
 in process_options(::Base.JLOptions) at ./client.jl:239
 in _start() at ./client.jl:318
while loading /home/jock/.julia/v0.5/MXNet/src/optimizers/sgd.jl, in expression starting on line 1
while loading /home/jock/.julia/v0.5/MXNet/src/optimizer.jl, in expression starting on line 244
while loading /home/jock/.julia/v0.5/MXNet/src/MXNet.jl, in expression starting on line 25
ERROR: Failed to precompile MXNet to /home/jock/.julia/lib/v0.5/MXNet.ji
 in compilecache(::String) at ./loading.jl:505
 in require(::Symbol) at ./loading.jl:364

I got the same result after doing a Pkg.update().
Any ideas?

Jock

See #126 a Pkg.checkout("MXNet") should solve this till we have tagged a new version of MXNet.jl

Great, that works. Thanks.