You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/libraries/System.Numerics.Tensors/src/PACKAGE.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,15 @@
1
1
## About
2
2
3
-
Provides methods for performing mathematical operations over _tensors_ represented as spans. These methods are accelerated to use SIMD (Single instruction, multiple data) operations supported by the CPU where available.
3
+
Provides methods for performing mathematical operations over _tensors_. This library offers both high-level tensor types and low-level primitives for working with multi-dimensional numeric data. Many operations are accelerated to use SIMD (Single instruction, multiple data) operations supported by the CPU where available.
4
4
5
5
## Key Features
6
6
7
-
* Numerical operations on tensors represented as `ReadOnlySpan<float>`
7
+
* High-level tensor types: `Tensor<T>`, `TensorSpan<T>`, `ReadOnlyTensorSpan<T>` for working with multi-dimensional arrays
8
+
* Low-level tensor primitives: `TensorPrimitives` for efficient span-based operations
9
+
* Generic support for various numeric types (float, double, int, etc.)
0 commit comments