| 4164 | } |
| 4165 | |
| 4166 | struct ggml_tensor * ggml_rope_inplace( |
| 4167 | struct ggml_context * ctx, |
| 4168 | struct ggml_tensor * a, |
| 4169 | struct ggml_tensor * b, |
| 4170 | int n_dims, |
| 4171 | int mode) { |
| 4172 | return ggml_rope_impl( |
| 4173 | ctx, a, b, NULL, n_dims, NULL, mode, 0, 10000.0f, 1.0f, 0.0f, 1.0f, 0.0f, 0.0f, true |
| 4174 | ); |
| 4175 | } |
| 4176 | |
| 4177 | struct ggml_tensor * ggml_rope_ext( |
| 4178 | struct ggml_context * ctx, |
nothing calls this directly
no test coverage detected