dmlc / MXNet.jl

MXNet Julia Package - flexible and efficient deep learning in Julia

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MXNet works on tagged version but fails on Master

bmharsha opened this issue · comments

On a fresh installation of Julia (No packages installed), I performed following

  • Pkg.clone("https://github.com/dmlc/MXNet.jl")
  • Pkg.build(“MXNet”)

As shown in following gist, I did not encounter any errors in the process, but when I tried using MXNet, I encountered following error

This behaviour doesn't occurs on the tagged version i.e on a fresh installation of Julia I did Pkg.add("MXNet") , which got the latest tagged version of MXNet (v0.1.0) . I manually edited build.jl to accommodate the changes in PR #174 , as you can see in this Gist , the build went through fine and I was able to do using MXNet without encountering any errors, even Pkg.test("MXNet") went through fine. So the issue occurs only on master.

Configurations

Operating System = Windows 2008 server R2 SP1
Julia version = 0.5.0

The edited version of build.jl that made MXNet work on Windows can be found here