| 58 | } |
| 59 | |
| 60 | int main(int argc, char* argv[]) |
| 61 | { |
| 62 | const int dynsizes[] = {4,6,8,16,24,32,49,64,128,256,512,900,0}; |
| 63 | std::cout << "size no sqrt standard"; |
| 64 | // #ifdef BENCH_GSL |
| 65 | // std::cout << " GSL (standard + double + ATLAS) "; |
| 66 | // #endif |
| 67 | std::cout << "\n"; |
| 68 | for (uint i=0; dynsizes[i]>0; ++i) |
| 69 | { |
| 70 | bench_reverse(Matrix<Scalar,Dynamic,Dynamic>(dynsizes[i],dynsizes[i])); |
| 71 | bench_reverse(Matrix<Scalar,Dynamic,1>(dynsizes[i]*dynsizes[i])); |
| 72 | } |
| 73 | // bench_reverse(Matrix<Scalar,2,2>()); |
| 74 | // bench_reverse(Matrix<Scalar,3,3>()); |
| 75 | // bench_reverse(Matrix<Scalar,4,4>()); |
| 76 | // bench_reverse(Matrix<Scalar,5,5>()); |
| 77 | // bench_reverse(Matrix<Scalar,6,6>()); |
| 78 | // bench_reverse(Matrix<Scalar,7,7>()); |
| 79 | // bench_reverse(Matrix<Scalar,8,8>()); |
| 80 | // bench_reverse(Matrix<Scalar,12,12>()); |
| 81 | // bench_reverse(Matrix<Scalar,16,16>()); |
| 82 | return 0; |
| 83 | } |
| 84 |
nothing calls this directly
no test coverage detected