| 4111 | } |
| 4112 | |
| 4113 | struct ggml_tensor * ggml_rope( |
| 4114 | struct ggml_context * ctx, |
| 4115 | struct ggml_tensor * a, |
| 4116 | struct ggml_tensor * b, |
| 4117 | int n_dims, |
| 4118 | int mode) { |
| 4119 | return ggml_rope_impl( |
| 4120 | ctx, a, b, NULL, n_dims, NULL, mode, 0, 10000.0f, 1.0f, 0.0f, 1.0f, 0.0f, 0.0f, false |
| 4121 | ); |
| 4122 | } |
| 4123 | |
| 4124 | struct ggml_tensor * ggml_rope_multi( |
| 4125 | struct ggml_context * ctx, |