| 5018 | } |
| 5019 | |
| 5020 | struct ggml_tensor * ggml_soft_max_back_inplace( |
| 5021 | struct ggml_context * ctx, |
| 5022 | struct ggml_tensor * a, |
| 5023 | struct ggml_tensor * b) { |
| 5024 | return ggml_soft_max_back_impl(ctx, a, b, true); |
| 5025 | } |
| 5026 | |
| 5027 | // ggml_rope |
| 5028 |
nothing calls this directly
no test coverage detected