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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
use std::borrow::BorrowMut;
use hpt_common::error::base::TensorError;
use hpt_types::dtype::TypeCommon;
use crate::tensor::CommonBounds;
/// A trait for binary operations on tensors.
pub trait NormalBinOps<RHS = Self>
where
<<Self as NormalBinOps<RHS>>::OutputMeta as TypeCommon>::Vec: Send + Sync,
{
/// The output tensor type.
type Output;
/// The output tensor data type.
type OutputMeta: CommonBounds;
/// The inplace output tensor type.
type InplaceOutput;
/// add with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// let a = Tensor::<f32>::new([2.0]);
/// let b = Tensor::<f32>::new([3.0]);
/// let c = a.add_(&b, &mut a.clone())?; // c and a point to the same memory
/// println!("{}", c); // [5.0]
/// ```
fn add_<U>(&self, rhs: RHS, out: U) -> std::result::Result<Self::Output, TensorError>
where
U: BorrowMut<Self::InplaceOutput>;
/// subtract with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// let a = Tensor::<f32>::new([2.0]);
/// let b = Tensor::<f32>::new([3.0]);
/// let c = a.sub_(&b, &mut a.clone())?; // c and a point to the same memory
/// println!("{}", c); // [-1.0]
/// ```
fn sub_<U>(&self, rhs: RHS, out: U) -> std::result::Result<Self::Output, TensorError>
where
U: BorrowMut<Self::InplaceOutput>;
/// multiply with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// let a = Tensor::<f32>::new([2.0]);
/// let b = Tensor::<f32>::new([3.0]);
/// let c = a.mul_(&b, &mut a.clone())?; // c and a point to the same memory
/// println!("{}", c); // [6.0]
/// ```
fn mul_<U>(&self, rhs: RHS, out: U) -> std::result::Result<Self::Output, TensorError>
where
U: BorrowMut<Self::InplaceOutput>;
/// rem with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// let a = Tensor::<f32>::new([2.0]);
/// let b = Tensor::<f32>::new([3.0]);
/// let c = a.mul_(&b, &mut a.clone())?; // c and a point to the same memory
/// println!("{}", c); // [6.0]
/// ```
fn rem_<U>(&self, rhs: RHS, out: U) -> std::result::Result<Self::Output, TensorError>
where
U: BorrowMut<Self::InplaceOutput>;
}
/// A trait for binary operations on tensors.
pub trait FloatBinOps<RHS = Self> {
/// The output tensor type.
type Output;
/// The output tensor data type.
type OutputMeta: CommonBounds;
/// The inplace output tensor type.
type InplaceOutput;
/// Compute `sqrt(x^2 + y^2)` for all elements
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// ## Example:
/// ```rust
/// let base = Tensor::<f32>::new(&[3.0, 4.0, 5.0]);
/// let height = Tensor::<f32>::new(&[4.0, 3.0, 12.0]);
/// let hypotenuse = base.hypot(&height)?; // [5.0, 5.0, 13.0]
/// let fixed_height = base.hypot(4.0)?; // [5.0, 5.66, 6.40]
/// ```
fn hypot<B>(&self, rhs: B) -> std::result::Result<Self::Output, TensorError>
where
B: Into<RHS>;
/// hypot with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// let base = Tensor::<f32>::new(&[3.0, 4.0, 5.0]);
/// let height = Tensor::<f32>::new(&[4.0, 3.0, 12.0]);
/// let result = base.hypot_(&height, &mut base.clone())?; // [5.0, 5.0, 13.0]
/// ```
fn hypot_<B, U>(&self, rhs: B, out: U) -> std::result::Result<Self::Output, TensorError>
where
U: BorrowMut<Self::InplaceOutput>,
B: Into<RHS>;
/// division with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// let a = Tensor::<f32>::new([2.0]);
/// let b = Tensor::<f32>::new([3.0]);
/// let c = a.div_(&b, &mut a.clone())?; // [0.6667]
/// ```
fn div_<B, U>(&self, rhs: B, out: U) -> std::result::Result<Self::Output, TensorError>
where
U: BorrowMut<Self::InplaceOutput>,
B: Into<RHS>;
/// Power of `self` and `rhs`
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// ## Example:
/// ```rust
/// let a = Tensor::<f32>::new(&[2.0, 3.0, 4.0]);
/// let b = Tensor::<f32>::new(&[2.0, 3.0, 2.0]);
/// let c = a.pow(&b)?; // [4.0, 27.0, 16.0]
/// let d = a.pow(2.0f64)?; // [4.0, 9.0, 16.0]
/// ```
fn pow<B>(&self, rhs: B) -> std::result::Result<Self::Output, TensorError>
where
B: Into<RHS>;
/// Power of `self` and `rhs` with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// let a = Tensor::<f32>::new(&[2.0, 3.0, 4.0]);
/// let b = Tensor::<f32>::new(&[2.0, 3.0, 2.0]);
/// let c = a.pow_(&b, &mut a.clone())?; // [4.0, 27.0, 16.0]
/// ```
fn pow_<B, U>(&self, rhs: B, out: U) -> std::result::Result<Self::Output, TensorError>
where
U: BorrowMut<Self::InplaceOutput>,
B: Into<RHS>;
}
/// A trait for matrix multiplication operations on tensors.
pub trait Matmul<RHS = Self>
where
<<Self as Matmul<RHS>>::OutputMeta as TypeCommon>::Vec: Send + Sync,
{
/// The output tensor type.
type Output;
/// The output tensor data type.
type OutputMeta: CommonBounds;
/// The inplace output tensor type.
type InplaceOutput;
/// Perform matrix multiplication of two tensors. The behavior depends on the dimensions of the input tensors:
///
/// - If both tensors are 2D, they are multiplied as matrices
/// - If either tensor is ND (N > 2), it is treated as a stack of matrices
/// - Broadcasting is applied to match dimensions
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// ## Example:
/// ```rust
/// // 2D matrix multiplication
/// let a = Tensor::<f64>::new(&[[1., 2.], [3., 4.]]);
/// let b = Tensor::<f64>::new(&[[5., 6.], [7., 8.]]);
/// let c = a.matmul(&b)?;
/// println!("2D result:\n{}", c);
///
/// // 3D batch matrix multiplication
/// let d = Tensor::<f64>::ones(&[2, 2, 3])?; // 2 matrices of shape 2x3
/// let e = Tensor::<f64>::ones(&[2, 3, 2])?; // 2 matrices of shape 3x2
/// let f = d.matmul(&e)?; // 2 matrices of shape 2x2
/// println!("3D result:\n{}", f);
/// ```
#[track_caller]
fn matmul(&self, rhs: RHS) -> std::result::Result<Self::Output, TensorError>;
/// matrix multiplication with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// // 2D matrix multiplication
/// let a = Tensor::<f64>::new(&[[1., 2.], [3., 4.]]);
/// let b = Tensor::<f64>::new(&[[5., 6.], [7., 8.]]);
/// let c = a.matmul_(&b, &mut a.clone())?;
/// println!("2D result:\n{}", c);
///
/// // 3D batch matrix multiplication
/// let d = Tensor::<f64>::ones(&[2, 2, 3])?; // 2 matrices of shape 2x3
/// let e = Tensor::<f64>::ones(&[2, 3, 2])?; // 2 matrices of shape 3x2
/// let f = d.matmul_(&e, &mut d.clone())?; // 2 matrices of shape 2x2
/// println!("3D result:\n{}", f);
/// ```
#[track_caller]
fn matmul_<U>(&self, rhs: RHS, out: U) -> std::result::Result<Self::InplaceOutput, TensorError>
where
U: BorrowMut<Self::InplaceOutput> + BorrowMut<Self::InplaceOutput>;
}
/// A trait for matrix multiplication operations on tensors with post-operation.
pub trait MatmulPost<RHS = Self>
where
<<Self as MatmulPost<RHS>>::OutputMeta as TypeCommon>::Vec: Send + Sync,
{
/// The output tensor type.
type Output;
/// The output tensor data type.
type OutputMeta: CommonBounds;
/// The inplace output tensor type.
type InplaceOutput;
/// Same as `matmul` but will perform post operation before writing final result to the memory.
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `post_op`: post operation function that takes scalar `T` as input and returns scalar `T`
///
/// `post_op_vec`: post operation function that takes simd vector `T::Simd` as input and returns simd vector `T::Simd`
///
/// ## Example:
/// ```rust
/// // 2D matrix multiplication
/// let a = Tensor::<f64>::new(&[[1., 2.], [3., 4.]]);
/// let b = Tensor::<f64>::new(&[[5., 6.], [7., 8.]]);
/// let c = a.matmul_post(&b, |x| x._relu(), |x| x._relu())?;
/// println!("2D result:\n{}", c);
///
/// // 3D batch matrix multiplication
/// let d = Tensor::<f64>::ones(&[2, 2, 3])?; // 2 matrices of shape 2x3
/// let e = Tensor::<f64>::ones(&[2, 3, 2])?; // 2 matrices of shape 3x2
/// let f = d.matmul_post(&e, |x| x._relu(), |x| x._relu())?; // 2 matrices of shape 2x2
/// println!("3D result:\n{}", f);
/// ```
#[track_caller]
fn matmul_post(
&self,
rhs: RHS,
post_op: fn(Self::OutputMeta) -> Self::OutputMeta,
post_op_vec: fn(
<<Self as MatmulPost<RHS>>::OutputMeta as TypeCommon>::Vec,
) -> <<Self as MatmulPost<RHS>>::OutputMeta as TypeCommon>::Vec,
) -> std::result::Result<Self::Output, TensorError>;
/// matrix multiplication with specified output tensor and post operation
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `out`: The output tensor.
///
/// `post_op`: post operation function that takes scalar `T` as input and returns scalar `T`
///
/// `post_op_vec`: post operation function that takes simd vector `T::Simd` as input and returns simd vector `T::Simd`
///
/// ## Example:
/// ```rust
/// // 2D matrix multiplication
/// let a = Tensor::<f64>::new(&[[1., 2.], [3., 4.]]);
/// let b = Tensor::<f64>::new(&[[5., 6.], [7., 8.]]);
/// let c = a.matmul_post_(&b, &mut a.clone(), |x| x._relu(), |x| x._relu())?;
/// println!("2D result:\n{}", c);
///
/// // 3D batch matrix multiplication
/// let d = Tensor::<f64>::ones(&[2, 2, 3])?; // 2 matrices of shape 2x3
/// let e = Tensor::<f64>::ones(&[2, 3, 2])?; // 2 matrices of shape 3x2
/// let f = d.matmul_post_(&e, &mut d.clone(), |x| x._relu(), |x| x._relu())?; // 2 matrices of shape 2x2
/// println!("3D result:\n{}", f);
/// ```
#[track_caller]
fn matmul_post_<U>(
&self,
rhs: RHS,
post_op: fn(Self::OutputMeta) -> Self::OutputMeta,
post_op_vec: fn(
<<Self as MatmulPost<RHS>>::OutputMeta as TypeCommon>::Vec,
) -> <<Self as MatmulPost<RHS>>::OutputMeta as TypeCommon>::Vec,
out: U,
) -> std::result::Result<Self::InplaceOutput, TensorError>
where
U: BorrowMut<Self::InplaceOutput> + BorrowMut<Self::InplaceOutput>;
}
/// A trait for gemm operations on tensors.
pub trait Gemm<RHS = Self>
where
<<Self as Gemm<RHS>>::OutputMeta as TypeCommon>::Vec: Send + Sync,
{
/// The output tensor type.
type Output;
/// The output tensor data type.
type OutputMeta: CommonBounds;
/// The inplace output tensor type.
type InplaceOutput;
/// Perform gemm (general matrix multiplication) of two tensors. The behavior depends on the dimensions of the input tensors:
///
/// - If both tensors are 2D, they are multiplied as matrices
/// - If either tensor is ND (N > 2), it is treated as a stack of matrices
/// - Broadcasting is applied to match dimensions
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `alpha`: Scaling factor for the matrix product (A @ B)
///
/// `beta`: Scaling factor for the existing values in output matrix C
///
/// `conj_dst`: Whether to conjugate C before scaling with beta
///
/// `conj_lhs`: Whether to conjugate A before multiplication
///
/// `conj_rhs`: Whether to conjugate B before multiplication
///
/// ## Example:
/// ```rust
/// // 2D matrix multiplication
/// let a = Tensor::<f64>::new(&[[1., 2.], [3., 4.]]);
/// let b = Tensor::<f64>::new(&[[5., 6.], [7., 8.]]);
/// let c = a.gemm(&b, 0.0, 1.0, false, false, false)?;
/// println!("2D result:\n{}", c);
///
/// // 3D batch matrix multiplication
/// let d = Tensor::<f64>::ones(&[2, 2, 3])?; // 2 matrices of shape 2x3
/// let e = Tensor::<f64>::ones(&[2, 3, 2])?; // 2 matrices of shape 3x2
/// let f = d.gemm(&e, 0.0, 1.0, false, false, false)?; // 2 matrices of shape 2x2
/// println!("3D result:\n{}", f);
/// ```
#[track_caller]
fn gemm(
&self,
rhs: RHS,
alpha: Self::OutputMeta,
beta: Self::OutputMeta,
conj_dst: bool,
conj_lhs: bool,
conj_rhs: bool,
) -> std::result::Result<Self::Output, TensorError>;
/// gemm (general matrix multiplication) with specified output tensor
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `alpha`: Scaling factor for the matrix product (A @ B)
///
/// `beta`: Scaling factor for the existing values in output matrix C
///
/// `conj_dst`: Whether to conjugate C before scaling with beta
///
/// `conj_lhs`: Whether to conjugate A before multiplication
///
/// `conj_rhs`: Whether to conjugate B before multiplication
///
/// `out`: The output tensor.
///
/// ## Example:
/// ```rust
/// // 2D matrix multiplication
/// let a = Tensor::<f64>::new(&[[1., 2.], [3., 4.]]);
/// let b = Tensor::<f64>::new(&[[5., 6.], [7., 8.]]);
/// let c = a.gemm_(&b, 0.0, 1.0, false, false, false, &mut a.clone())?;
/// println!("2D result:\n{}", c);
///
/// // 3D batch matrix multiplication
/// let d = Tensor::<f64>::ones(&[2, 2, 3])?; // 2 matrices of shape 2x3
/// let e = Tensor::<f64>::ones(&[2, 3, 2])?; // 2 matrices of shape 3x2
/// let f = d.gemm_(&e, 0.0, 1.0, false, false, false, &mut d.clone())?; // 2 matrices of shape 2x2
/// println!("3D result:\n{}", f);
/// ```
#[track_caller]
fn gemm_<U>(
&self,
rhs: RHS,
alpha: Self::OutputMeta,
beta: Self::OutputMeta,
conj_dst: bool,
conj_lhs: bool,
conj_rhs: bool,
out: U,
) -> std::result::Result<Self::InplaceOutput, TensorError>
where
U: BorrowMut<Self::InplaceOutput> + BorrowMut<Self::InplaceOutput>;
}
/// A trait for tensor dot operations on tensors.
pub trait TensorDot<RHS = Self> {
/// The output tensor type.
type Output;
/// Compute tensor dot product along specified axes. This is a generalization of matrix multiplication to higher dimensions.
///
/// ## Parameters:
/// `rhs`: The right-hand side tensor.
///
/// `axes`: A tuple of two arrays specifying the axes to contract over:
/// - First array contains axes from the first tensor
/// - Second array contains axes from the second tensor
/// - Arrays must have same length N
///
/// ## Example:
/// ```rust
/// // Matrix multiplication (2D tensordot)
/// let a = Tensor::new(&[[1., 2.], [3., 4.]]);
/// let b = Tensor::new(&[[5., 6.], [7., 8.]]);
/// let c = a.tensordot(&b, ([1], [0]))?; // Contract last axis of a with first axis of b
/// println!("Matrix multiplication:\n{}", c);
///
/// // Higher dimensional example
/// let d = Tensor::<f32>::ones(&[2, 3, 4])?;
/// let e = Tensor::<f32>::ones(&[4, 3, 2])?;
/// let f = d.tensordot(&e, ([1, 2], [1, 0]))?; // Contract axes 1,2 of d with axes 1,0 of e
/// println!("Higher dimensional result:\n{}", f);
/// ```
fn tensordot<const N: usize>(
&self,
rhs: &RHS,
axes: ([i64; N], [i64; N]),
) -> std::result::Result<Self::Output, TensorError>;
}