1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! Rotary Position Embedding (RoPE) operations trait
use crateResult;
use Var;
use Runtime;
/// Rotary Position Embedding (RoPE) operation
///
/// Composite op: applies rotary embeddings to query/key tensors.
/// Rotates pairs of dimensions by position-dependent angles.
///
/// # Layout contract
///
/// - `x`: `[B, H, S, D]` — input tensor (query or key)
/// - `cos_cache`: `[S, D/2]` — precomputed cosines for each position and dim pair
/// - `sin_cache`: `[S, D/2]` — precomputed sines
/// - Output: `[B, H, S, D]` — same shape as input