| 858 | void parse(argument_parser& ap) { c.parse(ap); } |
| 859 | |
| 860 | void run() |
| 861 | { |
| 862 | auto p = c.compile(); |
| 863 | std::cout << "Allocating params ... " << std::endl; |
| 864 | auto m = c.params(p); |
| 865 | std::cout << "rocTX:\tLoading rocTX library..." << std::endl; |
| 866 | auto rtx = create_marker_roctx(); |
| 867 | p.mark(m, std::move(rtx)); |
| 868 | } |
| 869 | }; |
| 870 | |
| 871 | struct op : command<op> |
nothing calls this directly
no test coverage detected