Created
November 2, 2020 00:50
-
-
Save saccadic/b0f77fcf0adeae317a383f4310f69162 to your computer and use it in GitHub Desktop.
nnableのリリースとデバック両方をビルド
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SET nnabla_build_folder_name=build | |
| SET nnabla_root=./nnable | |
| SET build_type=Release | |
| call .\nnable\build-tools\msvc\build_cpplib.bat | |
| call .\nnable-ext-cuda\build-tools\msvc\build_cpplib.bat | |
| cd .\nnable | |
| ren build build_Release | |
| cd ..\ | |
| cd .\nnable-ext-cuda | |
| ren build build_Release | |
| cd ..\ | |
| SET build_type=Debug | |
| call .\nnable\build-tools\msvc\build_cpplib.bat | |
| call .\nnable-ext-cuda\build-tools\msvc\build_cpplib.bat | |
| cd .\nnable | |
| ren build build_Debug | |
| cd ..\ | |
| cd .\nnable-ext-cuda | |
| ren build build_Debug | |
| cd ..\ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment