| 817 | } |
| 818 | |
| 819 | void run() |
| 820 | { |
| 821 | auto p = c.compile(); |
| 822 | std::cout << "Allocating params ... " << std::endl; |
| 823 | auto m = c.params(p); |
| 824 | std::cout << "Running ... " << std::endl; |
| 825 | double t = time_run(p, m, n); |
| 826 | std::cout << "Total time: " << t << "ms" << std::endl; |
| 827 | } |
| 828 | }; |
| 829 | |
| 830 | struct perf : command<perf> |