| 2596 | } |
| 2597 | |
| 2598 | struct ggml_tensor * ggml_step_inplace( |
| 2599 | struct ggml_context * ctx, |
| 2600 | struct ggml_tensor * a) { |
| 2601 | return ggml_unary_inplace(ctx, a, GGML_UNARY_OP_STEP); |
| 2602 | } |
| 2603 | |
| 2604 | // ggml_tanh |
| 2605 |
nothing calls this directly
no test coverage detected