-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further cleanup on simd, add a simd debug case, disable std random nu…
…mber generator example
- Loading branch information
Showing
5 changed files
with
72 additions
and
195 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,12 +1,14 @@ | ||
all: debug example | ||
all: debug example debug_simd | ||
|
||
debug: | ||
clang++ -std=c++17 -O0 -g example.cpp -o debug | ||
clang++ -std=c++17 -O0 -g -Wall example.cpp -o debug | ||
example: | ||
clang++ -std=c++17 -O3 -Wall -march=native example.cpp -o example | ||
debug_simd: | ||
clang++ -std=c++17 -O0 -g -march=native simd_debug.cpp -o simd_debug | ||
clang++ -std=c++17 -O0 -g -Wall -march=native simd_debug.cpp -o simd_debug | ||
example_simd: | ||
clang++ -std=c++17 -O0 -g -Wall -march=native example.cpp -o example_simd | ||
clean: | ||
rm -rf debug example | ||
rm -rf debug example debug_simd | ||
|
||
|
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.