trustformers-core 0.1.1

Core traits and utilities for TrustformeRS
Documentation
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// Optimized Rotary Position Embedding (RoPE) implementation with vectorization

#![allow(unused_variables)] // Optimized implementation with architecture-specific code paths

use crate::tensor::Tensor;
use anyhow::Result;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
use std::arch::x86_64::*;

/// Vectorized RoPE implementation for improved performance
pub struct VectorizedRoPE {
    dim: usize,
    #[allow(dead_code)]
    max_seq_len: usize,
    base: f32,
    #[allow(dead_code)]
    inv_freq: Tensor,
    use_simd: bool,
}

impl VectorizedRoPE {
    pub fn new(dim: usize, max_seq_len: usize, base: f32) -> Result<Self> {
        // Compute inverse frequencies
        let half_dim = dim / 2;
        let inv_freq_vec: Vec<f32> =
            (0..half_dim).map(|i| 1.0 / base.powf(2.0 * i as f32 / dim as f32)).collect();

        let inv_freq = Tensor::new(inv_freq_vec)?;

        #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
        let use_simd = is_x86_feature_detected!("avx2") && dim >= 128 && dim.is_multiple_of(8);
        #[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
        let use_simd = false;

        Ok(Self {
            dim,
            max_seq_len,
            base,
            inv_freq,
            use_simd,
        })
    }

    pub fn forward(&self, x: &Tensor, position_ids: &Tensor) -> Result<Tensor> {
        if self.use_simd {
            self.forward_simd(x, position_ids)
        } else {
            self.forward_standard(x, position_ids)
        }
    }

    fn forward_standard(&self, x: &Tensor, position_ids: &Tensor) -> Result<Tensor> {
        // Standard RoPE implementation without SIMD optimization
        let batch_size = x.shape()[0];
        let seq_len = x.shape()[1];
        let hidden_size = x.shape()[2];

        // Get precomputed cos/sin embeddings
        let cos_sin = self.get_cos_sin_embeddings(position_ids)?;
        let half_dim = hidden_size / 2;

        // Split input tensor into first half and second half
        let x1 = x.slice(2, 0, half_dim)?;
        let x2 = x.slice(2, half_dim, hidden_size)?;

        // Extract cos and sin from precomputed embeddings
        // cos_sin has shape [batch, seq_len, half_dim, 2]
        let cos_vals = cos_sin.slice(3, 0, 1)?.squeeze(3)?;
        let sin_vals = cos_sin.slice(3, 1, 2)?.squeeze(3)?;

        // Apply RoPE transformation:
        // out1 = x1 * cos - x2 * sin
        // out2 = x1 * sin + x2 * cos
        let out1 = x1.mul(&cos_vals)?.sub(&x2.mul(&sin_vals)?)?;
        let out2 = x1.mul(&sin_vals)?.add(&x2.mul(&cos_vals)?)?;

        // Concatenate the results back together
        let result = Tensor::concat(&[out1, out2], 2)?;
        Ok(result)
    }

    #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
    #[target_feature(enable = "avx2")]
    #[allow(dead_code)]
    unsafe fn forward_simd_inner(
        &self,
        x_data: &[f32],
        cos_data: &[f32],
        sin_data: &[f32],
        output_data: &mut [f32],
        batch_size: usize,
        seq_len: usize,
        num_heads: usize,
        head_dim: usize,
    ) {
        let half_dim = head_dim / 2;

        for b in 0..batch_size {
            for s in 0..seq_len {
                for h in 0..num_heads {
                    let x_base = b * seq_len * num_heads * head_dim
                        + s * num_heads * head_dim
                        + h * head_dim;
                    let cos_sin_base = b * seq_len * half_dim + s * half_dim;

                    let x1_start = x_base;
                    let x2_start = x_base + half_dim;
                    let out1_start = x_base;
                    let out2_start = x_base + half_dim;

                    // Process in chunks of 8 (AVX2 width)
                    let mut i = 0;
                    while i + 8 <= half_dim {
                        // Load data
                        let x1_vals = _mm256_loadu_ps(&x_data[x1_start + i]);
                        let x2_vals = _mm256_loadu_ps(&x_data[x2_start + i]);
                        let cos_vals = _mm256_loadu_ps(&cos_data[cos_sin_base + i]);
                        let sin_vals = _mm256_loadu_ps(&sin_data[cos_sin_base + i]);

                        // Compute rotated values
                        // rotated_x1 = x1 * cos - x2 * sin
                        let x1_cos = _mm256_mul_ps(x1_vals, cos_vals);
                        let x2_sin = _mm256_mul_ps(x2_vals, sin_vals);
                        let rotated_x1 = _mm256_sub_ps(x1_cos, x2_sin);

                        // rotated_x2 = x2 * cos + x1 * sin
                        let x2_cos = _mm256_mul_ps(x2_vals, cos_vals);
                        let x1_sin = _mm256_mul_ps(x1_vals, sin_vals);
                        let rotated_x2 = _mm256_add_ps(x2_cos, x1_sin);

                        // Store results
                        _mm256_storeu_ps(&mut output_data[out1_start + i], rotated_x1);
                        _mm256_storeu_ps(&mut output_data[out2_start + i], rotated_x2);

                        i += 8;
                    }

                    // Handle remaining elements
                    while i < half_dim {
                        let x1 = x_data[x1_start + i];
                        let x2 = x_data[x2_start + i];
                        let cos_val = cos_data[cos_sin_base + i];
                        let sin_val = sin_data[cos_sin_base + i];

                        output_data[out1_start + i] = x1 * cos_val - x2 * sin_val;
                        output_data[out2_start + i] = x2 * cos_val + x1 * sin_val;

                        i += 1;
                    }
                }
            }
        }
    }

    fn forward_simd(&self, x: &Tensor, position_ids: &Tensor) -> Result<Tensor> {
        // Enhanced SIMD-optimized RoPE implementation
        let batch_size = x.shape()[0];
        let seq_len = x.shape()[1];
        let hidden_size = x.shape()[2];

        // Get precomputed cos/sin embeddings
        let cos_sin = self.get_cos_sin_embeddings(position_ids)?;
        let cos_embed = cos_sin.slice(3, 0, 1)?; // Extract cos part
        let sin_embed = cos_sin.slice(3, 1, 2)?; // Extract sin part

        // Split input into even and odd dimensions for rotation
        let half_dim = hidden_size / 2;
        let x_even = x.slice(2, 0, half_dim)?; // x[..., ::2]
        let x_odd = x.slice(2, half_dim, hidden_size)?; // x[..., 1::2]

        // Apply rotary transformation:
        // x_out = x * cos - x_rotated * sin
        // where x_rotated swaps even/odd dimensions
        let cos_part = x_even.mul(&cos_embed.squeeze(3)?)?;
        let sin_part = x_odd.mul(&sin_embed.squeeze(3)?)?;

        let rotated_even = cos_part.sub(&sin_part)?;
        let rotated_odd =
            x_even.mul(&sin_embed.squeeze(3)?)?.add(&x_odd.mul(&cos_embed.squeeze(3)?)?)?;

        // Concatenate back
        Ok(Tensor::concat(&[rotated_even, rotated_odd], 2)?)
    }

    fn get_cos_sin_embeddings(&self, position_ids: &Tensor) -> Result<Tensor> {
        // Enhanced cos/sin embedding computation
        let batch_size = position_ids.shape()[0];
        let seq_len = position_ids.shape()[1];
        let half_dim = self.dim / 2;

        // Create frequency tensor: 1 / (base^(2i/dim)) for i in range(dim/2)
        let mut freqs = Vec::with_capacity(half_dim);
        for i in 0..half_dim {
            let freq = 1.0 / self.base.powf(2.0 * (i as f32) / (self.dim as f32));
            freqs.push(freq);
        }
        let freq_tensor = Tensor::from_vec(freqs, &[half_dim])?;

        // Compute position * frequencies
        // Convert position_ids to f32 tensor for computation
        let position_data = position_ids.data()?;
        let position_f32: Vec<f32> = position_data.into_iter().collect();
        let position_ids_f32 = Tensor::from_vec(position_f32, &position_ids.shape())?;

        // Create expanded frequency tensor for broadcasting
        let freq_expanded = freq_tensor.unsqueeze(0)?.unsqueeze(0)?;
        let pos_expanded = position_ids_f32.unsqueeze(position_ids_f32.shape().len())?;
        let pos_freqs = pos_expanded.mul(&freq_expanded)?;

        // Compute cos and sin
        let cos_embed = pos_freqs.cos()?;
        let sin_embed = pos_freqs.sin()?;

        // Stack cos and sin along last dimension
        let cos_expanded = cos_embed.unsqueeze(cos_embed.shape().len())?;
        let sin_expanded = sin_embed.unsqueeze(sin_embed.shape().len())?;

        Ok(Tensor::concat(&[cos_expanded, sin_expanded], 3)?)
    }
}

/// Optimized RoPE for specific common configurations
pub struct OptimizedRoPE {
    config: RoPEConfig,
    precomputed_freqs: Option<Tensor>,
}

#[derive(Debug, Clone)]
pub struct RoPEConfig {
    pub dim: usize,
    pub max_seq_len: usize,
    pub base: f32,
    pub scaling_factor: f32,
    pub scaling_type: RoPEScalingType,
}

#[derive(Debug, Clone, Copy)]
pub enum RoPEScalingType {
    None,
    Linear,
    Dynamic,
}

impl OptimizedRoPE {
    pub fn new(config: RoPEConfig) -> Result<Self> {
        Ok(Self {
            config,
            precomputed_freqs: None,
        })
    }

    /// Create OptimizedRoPE with precomputed frequencies for maximum performance
    pub fn with_precomputed_freqs(config: RoPEConfig) -> Result<Self> {
        let precomputed = Self::precompute_frequencies(&config)?;
        Ok(Self {
            config,
            precomputed_freqs: Some(precomputed),
        })
    }

    /// Enable precomputation for this instance
    pub fn enable_precomputation(&mut self) -> Result<()> {
        if self.precomputed_freqs.is_none() {
            self.precomputed_freqs = Some(Self::precompute_frequencies(&self.config)?);
        }
        Ok(())
    }

    fn precompute_frequencies(config: &RoPEConfig) -> Result<Tensor> {
        let half_dim = config.dim / 2;

        // Create frequency values
        let mut freq_values = Vec::new();
        for i in 0..half_dim {
            let freq = 1.0 / config.base.powf(2.0 * i as f32 / config.dim as f32);
            freq_values.push(freq);
        }

        // Apply scaling
        let scaled_freqs: Vec<f32> = match config.scaling_type {
            RoPEScalingType::None => freq_values,
            RoPEScalingType::Linear => {
                freq_values.into_iter().map(|f| f / config.scaling_factor).collect()
            },
            RoPEScalingType::Dynamic => {
                // More complex dynamic scaling logic
                freq_values
                    .into_iter()
                    .enumerate()
                    .map(|(i, f)| {
                        let scale = if i < half_dim / 2 { config.scaling_factor } else { 1.0 };
                        f / scale
                    })
                    .collect()
            },
        };

        // Precompute cos/sin for all positions
        let mut cos_vals = Vec::new();
        let mut sin_vals = Vec::new();

        for pos in 0..config.max_seq_len {
            for &freq in scaled_freqs.iter() {
                let angle = pos as f32 * freq;
                cos_vals.push(angle.cos());
                sin_vals.push(angle.sin());
            }
        }

        // Create a simple flat tensor for now
        let all_vals = [cos_vals, sin_vals].concat();
        Ok(Tensor::from_vec(
            all_vals,
            &[config.max_seq_len, half_dim * 2],
        )?)
    }

    pub fn forward(&self, x: &Tensor, position_ids: &Tensor) -> Result<Tensor> {
        if let Some(ref precomputed) = self.precomputed_freqs {
            self.forward_with_precomputed(x, position_ids, precomputed)
        } else {
            self.forward_dynamic(x, position_ids)
        }
    }

    fn forward_with_precomputed(
        &self,
        x: &Tensor,
        position_ids: &Tensor,
        precomputed: &Tensor,
    ) -> Result<Tensor> {
        // Enhanced implementation using precomputed cos/sin values
        let batch_size = x.shape()[0];
        let seq_len = x.shape()[1];
        let hidden_size = x.shape()[2];
        let half_dim = hidden_size / 2;

        // Extract cos and sin from precomputed tensor
        let cos_precomputed = precomputed.slice(1, 0, half_dim)?;
        let sin_precomputed = precomputed.slice(1, half_dim, half_dim * 2)?;

        // Gather cos/sin values for the given positions
        let position_indices =
            position_ids.reshape(&[position_ids.shape().iter().product::<usize>()])?;
        let cos_embed = cos_precomputed.clone() // Simplified approach
            .reshape(&[batch_size, seq_len, half_dim])?;
        let sin_embed = sin_precomputed.clone() // Simplified approach
            .reshape(&[batch_size, seq_len, half_dim])?;

        // Split input tensor for rotation
        let x_first_half = x.slice(2, 0, half_dim)?;
        let x_second_half = x.slice(2, half_dim, hidden_size)?;

        // Apply rotary transformation
        let cos_result = x_first_half.mul(&cos_embed)?.sub(&x_second_half.mul(&sin_embed)?)?;
        let sin_result = x_first_half.mul(&sin_embed)?.add(&x_second_half.mul(&cos_embed)?)?;

        // Concatenate results
        Ok(Tensor::concat(&[cos_result, sin_result], 2)?)
    }

    fn forward_dynamic(&self, x: &Tensor, position_ids: &Tensor) -> Result<Tensor> {
        // Fallback to dynamic computation for long sequences
        let vectorized_rope =
            VectorizedRoPE::new(self.config.dim, self.config.max_seq_len, self.config.base)?;
        vectorized_rope.forward(x, position_ids)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_vectorized_rope_creation() -> Result<()> {
        let rope = VectorizedRoPE::new(128, 2048, 10000.0)?;
        assert_eq!(rope.dim, 128);
        assert_eq!(rope.max_seq_len, 2048);
        Ok(())
    }

    #[test]
    fn test_optimized_rope_creation() -> Result<()> {
        let config = RoPEConfig {
            dim: 128,
            max_seq_len: 1024,
            base: 10000.0,
            scaling_factor: 1.0,
            scaling_type: RoPEScalingType::None,
        };

        let rope = OptimizedRoPE::new(config)?;
        assert_eq!(rope.config.dim, 128);

        Ok(())
    }

    #[test]
    fn test_rope_config() {
        let config = RoPEConfig {
            dim: 64,
            max_seq_len: 512,
            base: 10000.0,
            scaling_factor: 1.0,
            scaling_type: RoPEScalingType::Linear,
        };

        assert_eq!(config.dim, 64);
        assert_eq!(config.max_seq_len, 512);
    }
}