| 5769 | } |
| 5770 | |
| 5771 | struct ggml_tensor * ggml_unary_inplace( |
| 5772 | struct ggml_context * ctx, |
| 5773 | struct ggml_tensor * a, |
| 5774 | enum ggml_unary_op op) { |
| 5775 | return ggml_unary_impl(ctx, a, op, true); |
| 5776 | } |
| 5777 | |
| 5778 | // ggml_map_custom1 |
| 5779 |
no test coverage detected