@@ -38,7 +38,7 @@ void eigenvectors( benchmark::State & state )
3838INDEX_TYPE const SERIAL_SIZE_2x2 = (2 << 22 ) - 87 ;
3939INDEX_TYPE const SERIAL_SIZE_3x3 = (2 << 19 ) - 87 ;
4040
41- #if defined(LVARRAY_USE_OPENMP )
41+ #if defined(RAJA_ENABLE_OPENMP )
4242INDEX_TYPE const OMP_SIZE_2x2 = (2 << 24 ) - 87 ;
4343INDEX_TYPE const OMP_SIZE_3x3 = (2 << 23 ) - 87 ;
4444#endif
@@ -67,7 +67,7 @@ void registerBenchmarks()
6767 , std::make_tuple ( SERIAL_SIZE_2x2, std::integral_constant< int , 2 > {}, RAJA::PERM_JI {}, RAJA::PERM_KJI {}, serialPolicy {} )
6868 , std::make_tuple ( SERIAL_SIZE_3x3, std::integral_constant< int , 3 > {}, RAJA::PERM_IJ {}, RAJA::PERM_IJK {}, serialPolicy {} )
6969 , std::make_tuple ( SERIAL_SIZE_3x3, std::integral_constant< int , 3 > {}, RAJA::PERM_JI {}, RAJA::PERM_KJI {}, serialPolicy {} )
70- #if defined(LVARRAY_USE_OPENMP )
70+ #if defined(RAJA_ENABLE_OPENMP )
7171 , std::make_tuple ( OMP_SIZE_2x2, std::integral_constant< int , 2 > {}, RAJA::PERM_IJ {}, RAJA::PERM_IJK {}, parallelHostPolicy {} )
7272 , std::make_tuple ( OMP_SIZE_2x2, std::integral_constant< int , 2 > {}, RAJA::PERM_JI {}, RAJA::PERM_KJI {}, parallelHostPolicy {} )
7373 , std::make_tuple ( OMP_SIZE_3x3, std::integral_constant< int , 3 > {}, RAJA::PERM_IJ {}, RAJA::PERM_IJK {}, parallelHostPolicy {} )
@@ -97,7 +97,7 @@ int main( int argc, char * * argv )
9797 LVARRAY_LOG ( " Serial number of 2x2 matrices = " << LvArray::benchmarking::SERIAL_SIZE_2x2 );
9898 LVARRAY_LOG ( " Serial number of 3x3 matrices = " << LvArray::benchmarking::SERIAL_SIZE_3x3 );
9999
100- #if defined(LVARRAY_USE_OPENMP )
100+ #if defined(RAJA_ENABLE_OPENMP )
101101 LVARRAY_LOG ( " OMP number of 2x2 matrices = " << LvArray::benchmarking::OMP_SIZE_2x2 );
102102 LVARRAY_LOG ( " OMP number of 3x3 matrices = " << LvArray::benchmarking::OMP_SIZE_3x3 );
103103#endif
0 commit comments