|
|
@ -12,7 +12,7 @@ constexpr uint32_t TC_SCANB = 1; |
|
|
|
constexpr uint32_t TC_AGGRJ = 2; |
|
|
|
constexpr bool PERFORM_CACHING = true; |
|
|
|
constexpr bool STORE_B_IN_HBM = false; |
|
|
|
constexpr char MODE_STRING[] = "prefetch"; |
|
|
|
constexpr char MODE_STRING[] = "simple-prefetch"; |
|
|
|
constexpr bool COMPLEX_QUERY = false; |
|
|
|
#endif
|
|
|
|
#ifdef MODE_SIMPLE_DRAM
|
|
|
@ -23,7 +23,7 @@ constexpr uint32_t TC_SCANB = 0; |
|
|
|
constexpr uint32_t TC_AGGRJ = 1; |
|
|
|
constexpr bool PERFORM_CACHING = false; |
|
|
|
constexpr bool STORE_B_IN_HBM = false; |
|
|
|
constexpr char MODE_STRING[] = "dram"; |
|
|
|
constexpr char MODE_STRING[] = "simple-dram"; |
|
|
|
constexpr bool COMPLEX_QUERY = false; |
|
|
|
#endif
|
|
|
|
#ifdef MODE_SIMPLE_HBM
|
|
|
@ -34,7 +34,7 @@ constexpr uint32_t TC_SCANB = 0; |
|
|
|
constexpr uint32_t TC_AGGRJ = 1; |
|
|
|
constexpr bool PERFORM_CACHING = false; |
|
|
|
constexpr bool STORE_B_IN_HBM = true; |
|
|
|
constexpr char MODE_STRING[] = "hbm"; |
|
|
|
constexpr char MODE_STRING[] = "simple-hbm"; |
|
|
|
constexpr bool COMPLEX_QUERY = false; |
|
|
|
#endif
|
|
|
|
#ifdef MODE_COMPLEX_PREFETCH
|
|
|
@ -45,7 +45,7 @@ constexpr uint32_t TC_SCANB = 1; |
|
|
|
constexpr uint32_t TC_AGGRJ = 2; |
|
|
|
constexpr bool PERFORM_CACHING = true; |
|
|
|
constexpr bool STORE_B_IN_HBM = false; |
|
|
|
constexpr char MODE_STRING[] = "prefetch"; |
|
|
|
constexpr char MODE_STRING[] = "complex-prefetch"; |
|
|
|
constexpr bool COMPLEX_QUERY = true; |
|
|
|
#endif
|
|
|
|
#ifdef MODE_COMPLEX_DRAM
|
|
|
@ -56,7 +56,7 @@ constexpr uint32_t TC_SCANB = 1; |
|
|
|
constexpr uint32_t TC_AGGRJ = 2; |
|
|
|
constexpr bool PERFORM_CACHING = false; |
|
|
|
constexpr bool STORE_B_IN_HBM = false; |
|
|
|
constexpr char MODE_STRING[] = "dram"; |
|
|
|
constexpr char MODE_STRING[] = "complex-dram"; |
|
|
|
constexpr bool COMPLEX_QUERY = true; |
|
|
|
#endif
|
|
|
|
#ifdef MODE_COMPLEX_HBM
|
|
|
@ -67,6 +67,6 @@ constexpr uint32_t TC_SCANB = 1; |
|
|
|
constexpr uint32_t TC_AGGRJ = 2; |
|
|
|
constexpr bool PERFORM_CACHING = false; |
|
|
|
constexpr bool STORE_B_IN_HBM = true; |
|
|
|
constexpr char MODE_STRING[] = "hbm"; |
|
|
|
constexpr char MODE_STRING[] = "complex-hbm"; |
|
|
|
constexpr bool COMPLEX_QUERY = true; |
|
|
|
#endif
|