make: release_debug_sym for better perfing
This commit is contained in:
parent
11ceee29a1
commit
675b90c0d8
3
makefile
3
makefile
@ -1,6 +1,9 @@
|
|||||||
debug: test.cpp magyarsort.h
|
debug: test.cpp magyarsort.h
|
||||||
g++ test.cpp -g -std=c++14 -o test.out
|
g++ test.cpp -g -std=c++14 -o test.out
|
||||||
|
|
||||||
|
release_debug_sym: test.cpp magyarsort.h
|
||||||
|
g++ test.cpp -g -std=c++14 -O2 -o test.out
|
||||||
|
|
||||||
release: test.cpp magyarsort.h
|
release: test.cpp magyarsort.h
|
||||||
g++ test.cpp -std=c++14 -O2 -o test.out
|
g++ test.cpp -std=c++14 -O2 -o test.out
|
||||||
|
|
||||||
|
|||||||
2
test.cpp
2
test.cpp
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
// Number of input elements to generate - unused when CREEL is defined!
|
// Number of input elements to generate - unused when CREEL is defined!
|
||||||
//#define SORT_WIDTH 200000000
|
//#define SORT_WIDTH 200000000
|
||||||
#define SORT_WIDTH 4000000
|
#define SORT_WIDTH 400000
|
||||||
// Uncomment this to use nibbles as digits and not bytes - CREEL defines this anyways
|
// Uncomment this to use nibbles as digits and not bytes - CREEL defines this anyways
|
||||||
//#define MAGYAR_SORT_NIBBLE
|
//#define MAGYAR_SORT_NIBBLE
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user