| 28 | } |
| 29 | |
| 30 | int main(int argc, char *argv[]) |
| 31 | { |
| 32 | perf_parse_args(argc, argv); |
| 33 | |
| 34 | std::cout << "size: " << PERF_N << std::endl; |
| 35 | |
| 36 | float alpha = 2.5f; |
| 37 | |
| 38 | std::vector<float> host_x(PERF_N); |
| 39 | std::vector<float> host_y(PERF_N); |
| 40 | std::generate(host_x.begin(), host_x.end(), rand_float); |
| 41 | std::generate(host_y.begin(), host_y.end(), rand_float); |
| 42 | |
| 43 | perf_timer t; |
| 44 | for(size_t trial = 0; trial < PERF_TRIALS; trial++){ |
| 45 | t.start(); |
| 46 | serial_saxpy(PERF_N, alpha, &host_x[0], &host_y[0]); |
| 47 | t.stop(); |
| 48 | } |
| 49 | std::cout << "time: " << t.min_time() / 1e6 << " ms" << std::endl; |
| 50 | |
| 51 | return 0; |
| 52 | } |
nothing calls this directly
no test coverage detected