-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compiling mxnet on windows #17
Comments
1.please use 2015,not 2013. |
Unfortunately, if I generate a solution with cmake for VS2013 and try to open it in my VS 2013, the Visual Studio is just crashing. I can open the same solution in VS2015 just fine. |
don't generate solution with VS2013 .generate VS2015 Win64 solution.the VS2013 is deprecated. |
got it, thanks
…On 6 Sep 2017 03:39, "Hu Shiwen" ***@***.***> wrote:
don't generate solution with VS2013 .generate VS2015 Win64 solution.the
VS2013 is deprecated.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#17 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACqsbB-oia2VD9ZcAhoO7CbIx60wEwi2ks5sfffWgaJpZM4PM3F8>
.
|
I am compiling my version mxnet on
I have used the source code from https://github.com/apache/incubator-mxnet
and follow the instructions from https://mxnet.incubator.apache.org/get_started/windows_setup.html. (That is, I use cmake to generate the solution file,etc)
The compilation is successful, and a DLL is produced. I install the python biding with python setup.py install. However, when I load such an installation, the mxnet library cannot be loaded
Python 2.7.12 |Anaconda 4.2.0 (64-bit)| (default, Jun 29 2016, 11:07:13) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org
This basically could mean that some dependencies cannot be found. I've made my best to insure that all the dependencies are in path. It is enough to just repace the mxnet DLL that I have built with a pre-built DLL, and everything works as expected. [BTW I insist on using my version of DLL because I have to compile in some special operators for FCIS https://github.com/msracver/FCIS]
When I compare my installation with the pre-built version of mxnet from this site, I see that my version of the libary is much smaller.
my version size: 84 546 KB
pre-build version: 358 896 KB
So, it seems that the way I am building my version of mxnet is wrong. I have no clue why? Are there any other instructions to build mxnet on win?
Note that I am building with VS 2015. I've attempted to use VS 2013, but in this case, VS just crashes when I load the generated solution.
Any hints will be greatly appreciated.
The text was updated successfully, but these errors were encountered: