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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
use burn_std::{DType, Shape};
use crate::{BackendTypes, Distribution, Scalar, element::Element, tensor::BasicOps};
/// Trait that list all operations that can be applied on all numerical tensors.
///
/// # Warnings
///
/// This is an internal trait, use the public API provided by the
#[cfg_attr(doc, doc = crate::doc_tensor!())]
#[cfg_attr(not(doc), doc = "`Tensor`")]
/// struct.
pub trait Numeric<B: BackendTypes>: BasicOps<B>
where
Self::Elem: Element,
{
/// Adds two tensors together.
///
/// # Arguments
///
/// * `lhs` - The left hand side tensor.
/// * `rhs` - The right hand side tensor.
///
/// # Returns
///
/// The sum of the two tensors.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For adding tensors, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("add"))]
#[cfg_attr(not(doc), doc = "`Tensor::add`")]
/// function, which is more high-level and designed for public use.
fn add(lhs: Self::Primitive, rhs: Self::Primitive) -> Self::Primitive;
/// Adds a scalar to a tensor element-wise.
///
/// # Arguments
///
/// * `lhs` - The left hand side tensor.
/// * `rhs` - The right hand side scalar.
///
/// # Returns
///
/// The sum of the tensor and the scalar.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For adding a scalar to a tensor, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("add_scalar"))]
#[cfg_attr(not(doc), doc = "`Tensor::add_scalar`")]
/// function, which is more high-level and designed for public use.
fn add_scalar(lhs: Self::Primitive, rhs: Scalar) -> Self::Primitive;
/// Subtracts two tensors.
///
/// # Arguments
///
/// * `lhs` - The left hand side tensor.
/// * `rhs` - The right hand side tensor.
///
/// # Returns
///
/// The difference of the two tensors.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For subtracting tensors, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("sub"))]
#[cfg_attr(not(doc), doc = "`Tensor::sub`")]
/// function, which is more high-level and designed for public use.
fn sub(lhs: Self::Primitive, rhs: Self::Primitive) -> Self::Primitive;
/// Subtracts a scalar from a tensor element-wise.
///
/// # Arguments
///
/// * `lhs` - The left hand side tensor.
/// * `rhs` - The right hand side scalar.
///
/// # Returns
///
/// The difference of the tensor and the scalar.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For subtracting a scalar from a tensor, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("sub_scalar"))]
#[cfg_attr(not(doc), doc = "`Tensor::sub_scalar`")]
/// function, which is more high-level and designed for public use.
fn sub_scalar(lhs: Self::Primitive, rhs: Scalar) -> Self::Primitive;
/// Divides two tensors.
///
/// # Arguments
///
/// * `lhs` - The left hand side tensor.
/// * `rhs` - The right hand side tensor.
///
/// # Returns
///
/// The quotient of the two tensors.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For dividing tensors, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("div"))]
#[cfg_attr(not(doc), doc = "`Tensor::div`")]
/// function, which is more high-level and designed for public use.
fn div(lhs: Self::Primitive, rhs: Self::Primitive) -> Self::Primitive;
/// Divides a tensor by a scalar element-wise.
///
/// # Arguments
///
/// * `lhs` - The left hand side tensor.
/// * `rhs` - The right hand side scalar.
///
/// # Returns
///
/// The quotient of the tensor and the scalar.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For dividing a tensor by a scalar, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("div_scalar"))]
#[cfg_attr(not(doc), doc = "`Tensor::div_scalar`")]
/// function, which is more high-level and designed for public use.
fn div_scalar(lhs: Self::Primitive, rhs: Scalar) -> Self::Primitive;
/// Computes the modulo element-wise. The result is the *signed* remainder of the division and its absolute value is
/// less than that of the divisor.
///
/// # Arguments
///
/// * `lhs` - The dividend.
/// * `rhs` - The divisor.
///
/// # Returns
///
/// The modulo of the input tensor with the divisor.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For performing the modulo operation, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("remainder"))]
#[cfg_attr(not(doc), doc = "`Tensor::remainder`")]
/// function, which is more high-level and designed for public use.
fn remainder(lhs: Self::Primitive, rhs: Self::Primitive) -> Self::Primitive;
/// Computes the modulo element-wise. The result is the *signed* remainder of the division and its absolute value is
/// less than that of the divisor.
///
/// # Arguments
///
/// * `lhs` - The dividend.
/// * `rhs` - The divisor.
///
/// # Returns
///
/// The modulo of the input tensor with the divisor.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For performing the modulo operation, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("remainder_scalar"))]
#[cfg_attr(not(doc), doc = "`Tensor::remainder_scalar`")]
/// function, which is more high-level and designed for public use.
fn remainder_scalar(lhs: Self::Primitive, rhs: Scalar) -> Self::Primitive;
/// Multiplies two tensors.
///
/// # Arguments
///
/// * `lhs` - The left hand side tensor.
/// * `rhs` - The right hand side tensor.
///
/// # Returns
///
/// The product of the two tensors.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For multiplying tensors, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("mul"))]
#[cfg_attr(not(doc), doc = "`Tensor::mul`")]
/// function, which is more high-level and designed for public use.
fn mul(lhs: Self::Primitive, rhs: Self::Primitive) -> Self::Primitive;
/// Multiplies a tensor by a scalar element-wise.
///
/// # Arguments
///
/// * `lhs` - The left hand side tensor.
/// * `rhs` - The right hand side scalar.
///
/// # Returns
///
/// The product of the tensor and the scalar.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For multiplying a tensor by a scalar, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("mul_scalar"))]
#[cfg_attr(not(doc), doc = "`Tensor::mul_scalar`")]
/// function, which is more high-level and designed for public use.
fn mul_scalar(lhs: Self::Primitive, rhs: Scalar) -> Self::Primitive;
/// Negates a tensor.
///
/// # Arguments
///
/// * `tensor` - The tensor to negate.
///
/// # Returns
///
/// The negated tensor.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For negating a tensor, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("neg"))]
#[cfg_attr(not(doc), doc = "`Tensor::neg`")]
/// function, which is more high-level and designed for public use.
fn neg(tensor: Self::Primitive) -> Self::Primitive;
/// Returns the signs of the elements of a tensor.
///
/// # Arguments
///
/// * `tensor` - The tensor.
///
/// # Returns
///
/// The signs of the elements of the tensor.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For getting the signs of the elements of a tensor, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("sign"))]
#[cfg_attr(not(doc), doc = "`Tensor::sign`")]
/// function, which is more high-level and designed for public use.
fn sign(tensor: Self::Primitive) -> Self::Primitive;
/// Sums all the elements of the tensor.
///
/// # Arguments
///
/// * `tensor` - The tensor to sum.
///
/// # Returns
///
/// The sum of all the elements of the tensor.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For summing all the elements of a tensor, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("sum"))]
#[cfg_attr(not(doc), doc = "`Tensor::sum`")]
/// function, which is more high-level and designed for public use.
fn sum(tensor: Self::Primitive) -> Self::Primitive;
/// Sums all the elements of the tensor along a dimension.
///
/// # Arguments
///
/// * `tensor` - The tensor to sum.
/// * `dim` - The dimension along which to sum.
///
/// # Returns
///
/// The sum of all the elements of the tensor along the specified dimension.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For summing all the elements of a tensor along a dimension, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("sum_dim"))]
#[cfg_attr(not(doc), doc = "`Tensor::sum_dim`")]
/// function, which is more high-level and designed for public use.
fn sum_dim(tensor: Self::Primitive, dim: usize) -> Self::Primitive;
/// Computes the product of all the elements of the tensor.
///
/// # Arguments
///
/// * `tensor` - The tensor to compute the product of.
///
/// # Returns
///
/// The product of all the elements of the tensor.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For computing the product of all the elements of a tensor, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("prod"))]
#[cfg_attr(not(doc), doc = "`Tensor::prod`")]
/// function, which is more high-level and designed for public use.
fn prod(tensor: Self::Primitive) -> Self::Primitive;
/// Computes the product of all the elements of the tensor along a dimension.
///
/// # Arguments
///
/// * `tensor` - The tensor to compute the product of.
/// * `dim` - The dimension along which to compute the product.
///
/// # Returns
///
/// The product of all the elements of the tensor along the specified dimension.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For computing the product of all the elements of a tensor along a dimension, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("prod_dim"))]
#[cfg_attr(not(doc), doc = "`Tensor::prod_dim`")]
/// function, which is more high-level and designed for public use.
fn prod_dim(tensor: Self::Primitive, dim: usize) -> Self::Primitive;
/// Computes the mean of all the elements of the tensor.
///
/// # Arguments
///
/// * `tensor` - The tensor to compute the mean of.
///
/// # Returns
///
/// The mean of all the elements of the tensor.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For computing the mean of all the elements of a tensor, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("mean"))]
#[cfg_attr(not(doc), doc = "`Tensor::mean`")]
/// function, which is more high-level and designed for public use.
fn mean(tensor: Self::Primitive) -> Self::Primitive;
/// Computes the mean of all the elements of the tensor along a dimension.
///
/// # Arguments
///
/// * `tensor` - The tensor to compute the mean of.
/// * `dim` - The dimension along which to compute the mean.
///
/// # Returns
///
/// The mean of all the elements of the tensor along the specified dimension.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For computing the mean of all the elements of a tensor along a dimension, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("mean_dim"))]
#[cfg_attr(not(doc), doc = "`Tensor::mean_dim`")]
/// function, which is more high-level and designed for public use.
fn mean_dim(tensor: Self::Primitive, dim: usize) -> Self::Primitive;
/// Computes the cumulative sum of elements along a dimension.
///
/// # Arguments
///
/// * `tensor` - The tensor to compute the cumulative sum of.
/// * `dim` - The dimension along which to compute the cumulative sum.
///
/// # Returns
///
/// A tensor with the same shape as the input tensor, where each element is the cumulative sum
/// of all elements up to and including that position along the specified dimension.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For computing the cumulative sum of elements along a dimension, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("cumsum"))]
#[cfg_attr(not(doc), doc = "`Tensor::cumsum`")]
/// function, which is more high-level and designed for public use.
fn cumsum(tensor: Self::Primitive, dim: usize) -> Self::Primitive;
/// Computes the cumulative product of elements along a dimension.
///
/// # Arguments
///
/// * `tensor` - The tensor to compute the cumulative product of.
/// * `dim` - The dimension along which to compute the cumulative product.
///
/// # Returns
///
/// A tensor with the same shape as the input tensor, where each element is the cumulative product
/// of all elements up to and including that position along the specified dimension.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For computing the cumulative product of elements along a dimension, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("cumprod"))]
#[cfg_attr(not(doc), doc = "`Tensor::cumprod`")]
/// function, which is more high-level and designed for public use.
fn cumprod(tensor: Self::Primitive, dim: usize) -> Self::Primitive;
/// Calculate absolute value on all elements of a tensor
///
/// # Arguments
///
/// * `tensor` - The tensor to apply abs to.
///
/// # Returns
///
/// A tensor with absolute values.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// For calculating abs of the elements of a tensor, users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("abs"))]
#[cfg_attr(not(doc), doc = "`Tensor::abs`")]
/// function, which is more high-level and designed for public use.
fn abs(tensor: Self::Primitive) -> Self::Primitive;
/// Element-wise power of a tensor
///
/// # Arguments
/// * `tensor` - The tensor to apply power to.
/// * `power` - The power to apply to the tensor.
fn powi(lhs: Self::Primitive, rhs: Self::Primitive) -> Self::Primitive;
/// Element-wise power of a tensor to a scalar int
///
/// # Arguments
/// * `tensor` - The tensor to apply power to.
/// * `power` - The power to apply to the tensor.
fn powi_scalar(lhs: Self::Primitive, rhs: Scalar) -> Self::Primitive;
/// Create a random tensor.
///
/// # Arguments
///
/// * `shape` - The shape of the output tensor.
/// * `distribution` - The distribution used to sample.
/// * `device` - The device to use.
/// * `dtype` - The target data type.
///
/// # Returns
///
/// A new tensor.
///
/// # Remarks
///
/// This is a low-level function used internally by the library to call different backend functions
/// with static dispatch. It is not designed for direct usage by users, and not recommended to import
/// or use this function directly.
///
/// Users should prefer the
#[cfg_attr(doc, doc = crate::doc_tensor!("random"))]
#[cfg_attr(not(doc), doc = "`Tensor::random`")]
/// function, which is more high-level and designed for public use.
fn random(
shape: Shape,
distribution: Distribution,
device: &B::Device,
dtype: DType,
) -> Self::Primitive;
/// Applies the matrix multiplication operation.
///
/// ```math
/// C = AB
/// ```
fn matmul(lhs: Self::Primitive, rhs: Self::Primitive) -> Self::Primitive;
}