-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Args regex; rm Primes.h .cpp; update Makefile to use git describe
- Loading branch information
Showing
9 changed files
with
22 additions
and
217 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
openowl | ||
gpuowl | ||
version.inc | ||
gpuowl.log | ||
*.owl | ||
*.bak | ||
|
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 was deleted.
Oops, something went wrong.
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,3 +1,10 @@ | ||
srcs = 'Pm1Plan.cpp GmpUtil.cpp FFTConfig.cpp Worktodo.cpp common.cpp gpuowl.cpp Gpu.cpp clwrap.cpp Task.cpp checkpoint.cpp timeutil.cpp Args.cpp Primes.cpp state.cpp Signal.cpp'.split() | ||
# GCC 8.3.0 on Ubuntu 19.04 crashes on filesystem::path | ||
DefaultEnvironment(CXX='g++-9') | ||
|
||
Program('openowl', srcs, LIBPATH='.', LIBS=['amdocl64', 'gmp'], parse_flags='-std=c++17 -O2 -Wall -pthread') | ||
srcs = 'Pm1Plan.cpp GmpUtil.cpp FFTConfig.cpp Worktodo.cpp common.cpp gpuowl.cpp Gpu.cpp clwrap.cpp Task.cpp checkpoint.cpp timeutil.cpp Args.cpp state.cpp Signal.cpp'.split() | ||
|
||
AlwaysBuild(Command('version.inc', [], 'echo \\"`git describe --long`\\" > $TARGETS')) | ||
|
||
LIBPATH=['/opt/rocm/opencl/lib/x86_64'] | ||
|
||
Program('gpuowl', srcs, LIBPATH=LIBPATH, LIBS=['amdocl64', 'gmp'], parse_flags='-std=c++17 -O2 -Wall -pthread') |
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