1 2 /* Copy this file (test_main.h.in) to test_main.h, and edit */ 3 4 /* DEBUG RUN, ON V */ 5 #if 1 6 #define TEST_N_ITERS 1 7 #define TEST_N_BBS 1 8 #define TEST_FLAGS (1<<7)|(0<<6)|(1<<3)|(0<<2)|(0<<1)|(0<<0) 9 #endif 10 11 /* CHECKING RUN, ON V */ 12 #if 0 13 #define TEST_N_ITERS 1 14 #define TEST_N_BBS 100000 15 #define TEST_FLAGS 0 16 #endif 17 18 /* PROFILING RUN, NATIVE */ 19 #if 0 20 #define TEST_N_ITERS 100 21 #define TEST_N_BBS 1000 22 #define TEST_FLAGS 0 23 #endif 24 25 /* PROFILING RUN, REDUCED WORKLOAD */ 26 #if 0 27 #define TEST_N_ITERS 3 28 #define TEST_N_BBS 1000 29 #define TEST_FLAGS 0 30 #endif 31 32