(h)
| 191 | @api.handle('migraphx_program_parameters', |
| 192 | 'std::unordered_map<std::string, migraphx::argument>') |
| 193 | def program_parameters(h): |
| 194 | h.constructor('create') |
| 195 | h.method('add', |
| 196 | api.params(name='const char*', |
| 197 | argument='const migraphx::argument&'), |
| 198 | invoke='${program_parameters}[${name}] = ${argument}') |
| 199 | |
| 200 | |
| 201 | @api.handle('migraphx_arguments', 'std::vector<migraphx::argument>') |
nothing calls this directly
no test coverage detected