| 993 | } |
| 994 | |
| 995 | extern "C" migraphx_status migraphx_shape_destroy(migraphx_shape_t shape) |
| 996 | { |
| 997 | auto api_error_result = migraphx::try_([&] { destroy((shape)); }); |
| 998 | return api_error_result; |
| 999 | } |
| 1000 | |
| 1001 | extern "C" migraphx_status migraphx_shape_assign_to(migraphx_shape_t output, |
| 1002 | const_migraphx_shape_t input) |