-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Attempt to add CI for Mac as well * Forgot to commit the files... * Bug fixes. * More bug fixes. * More fixes... * Pulled out cmake run into a separate script. * Small fix. * Mistake with travis_wait * Just one file needed now, no separate build mpi * Problem with cached openmpi * Cached mpi * Fixed mac bug. * Switched swig method for mac. * Need to install gcc for fortran. * Mac fixes. * A few fixes for Linux, caches Swig * Cache swig * Pip caching isuse maybe. * Swig install with brew * Problem with travis wait? * No redirect to debug... * Swig debugging * Build examples on Travis-CI * Pip problem. * Needs to install python2 * Use easy install for pip * Try pip2? * Tried to fix the C++ example compilation. * Added flag for release and debug mode. * Fortran only option for compiling. * Update ReadMe.md * Bug fix.
- Loading branch information
1 parent
4e47b66
commit b56d6e5
Showing
17 changed files
with
201 additions
and
105 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
subdirs(C) | ||
subdirs(CPlusPlus) | ||
subdirs(Fortran) | ||
subdirs(Swig) | ||
subdirs(Wrapper) | ||
|
||
if (NOT FORTRAN_ONLY) | ||
subdirs(C) | ||
subdirs(CPlusPlus) | ||
subdirs(Swig) | ||
subdirs(Wrapper) | ||
endif() |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
################################################################################ | ||
# Build file for the K Computer. | ||
set(CMAKE_SYSTEM_NAME Linux) | ||
set(CMAKE_C_COMPILER mpifccpx) | ||
set(CMAKE_Fortran_COMPILER mpifrtpx) | ||
set(CMAKE_CXX_COMPILER mpiFCCpx) | ||
set(CXX_TOOLCHAINFLAGS "-Kfast,-Kparallel,openmp,optmsg=2 --linkfortran") | ||
set(F_TOOLCHAINFLAGS "-Kfast,-Kparallel,openmp,optmsg=2 -Cpp") | ||
set(PYTHON_INCLUDE_PATH "/home/ra000010/a03363/include/python2.7") | ||
|
||
# Release Suggestions | ||
set(CXX_TOOLCHAINFLAGS_RELEASE | ||
"-Kfast,-Kparallel,openmp,optmsg=2 --linkfortran") | ||
set(F_TOOLCHAINFLAGS_RELEASE "-Kfast,-Kparallel,openmp,optmsg=2 -Cpp") | ||
|
||
# Debug Suggestions | ||
set(CXX_TOOLCHAINFLAGS_DEBUG "--linkfortran") | ||
set(F_TOOLCHAINFLAGS_DEBUG "-Cpp") |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.