-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
40 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
dofile("binding/formiga.lua") | ||
formiga.build_dir = "build_cuda_and_mkl_debug" | ||
|
||
luapkg{ | ||
|
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,4 @@ | ||
dofile("binding/formiga.lua") | ||
formiga.build_dir = "build_cuda_and_mkl_release" | ||
|
||
luapkg{ | ||
|
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,4 @@ | ||
dofile("binding/formiga.lua") | ||
formiga.build_dir = "build_debug" | ||
|
||
luapkg{ | ||
|
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,4 @@ | ||
dofile("binding/formiga.lua") | ||
formiga.build_dir = "build_debug_macosx" | ||
|
||
luapkg{ | ||
|
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,4 @@ | ||
dofile("binding/formiga.lua") | ||
formiga.build_dir = "build_release" | ||
|
||
luapkg{ | ||
|
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,4 @@ | ||
dofile("binding/formiga.lua") | ||
formiga.build_dir = "build_release_macosx" | ||
|
||
luapkg{ | ||
|
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,4 @@ | ||
dofile("binding/formiga.lua") | ||
formiga.build_dir = "build_release_pi" | ||
|
||
luapkg{ | ||
|
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,40 +1,40 @@ | ||
ALL: release-mkl | ||
|
||
document: | ||
lua -l formiga build_release.lua document | ||
lua build_release.lua document | ||
|
||
test-macosx: | ||
lua -l formiga build_debug_macosx.lua test | ||
lua build_debug_macosx.lua test | ||
|
||
test-mkl: | ||
lua -l formiga build_mkl_debug.lua test | ||
lua build_mkl_debug.lua test | ||
|
||
#test: | ||
# lua -l formiga build_debug.lua test | ||
# lua build_debug.lua test | ||
|
||
#test-cuda-mkl: | ||
# lua -l formiga build_cuda_and_mkl_debug.lua test | ||
# lua build_cuda_and_mkl_debug.lua test | ||
|
||
release-macosx: | ||
lua -l formiga build_release_macosx.lua | ||
lua build_release_macosx.lua | ||
|
||
release-mkl: | ||
lua -l formiga build_mkl_release.lua | ||
lua build_mkl_release.lua | ||
|
||
release: | ||
lua -l formiga build_release.lua | ||
lua build_release.lua | ||
|
||
release-cuda-mkl: | ||
lua -l formiga build_cuda_and_mkl_release.lua | ||
lua build_cuda_and_mkl_release.lua | ||
|
||
debug-macosx: | ||
lua -l formiga build_debug_macosx.lua | ||
lua build_debug_macosx.lua | ||
|
||
debug-mkl: | ||
lua -l formiga build_mkl_debug.lua | ||
lua build_mkl_debug.lua | ||
|
||
debug: | ||
lua -l formiga build_debug.lua | ||
lua build_debug.lua | ||
|
||
debug-cuda-mkl: | ||
lua -l formiga build_cuda_and_mkl_debug.lua | ||
lua build_cuda_and_mkl_debug.lua |