| 853 | } |
| 854 | |
| 855 | extern "C" migraphx_status migraphx_optimals_assign_to(migraphx_optimals_t output, |
| 856 | const_migraphx_optimals_t input) |
| 857 | { |
| 858 | auto api_error_result = migraphx::try_([&] { *output = *input; }); |
| 859 | return api_error_result; |
| 860 | } |
| 861 | |
| 862 | extern "C" migraphx_status |
| 863 | migraphx_optimals_create(migraphx_optimals_t* optimals, const size_t* ptr, size_t size) |