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: Tensor/README.md
+5-6
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ A *tensor* is an n-dimensional array of an arbitrary data type (for example `sin
7
7
Tensors of data type `'T` are implemented by the [Tensor<'T>](xref:Tensor.Tensor`1) type.
8
8
9
9
A tensor can be either stored in host memory or in the memory of a GPU computing device.
10
-
Currenty only nVidia cards implementing the [CUDA API](https://developer.nvidia.com/cuda-zone) are supported.
10
+
Currently only nVidia cards implementing the [CUDA API](https://developer.nvidia.com/cuda-zone) are supported.
11
11
The API for host and GPU stored tensors is mostly equal, thus a program can make use of GPU accelerated operations without porting effort.
12
12
13
13
The tensor library provides functionality similar to [Numpy's Ndarray](http://docs.scipy.org/doc/numpy-1.10.0/reference/arrays.html) and [MATLAB arrays](http://www.mathworks.com/help/matlab/matrices-and-arrays.html), including vector-wise operations, reshaping, slicing, broadcasting, masked assignment, reduction operations and BLAS operations.
@@ -17,12 +17,12 @@ This open source library is written in [F#](http://fsharp.org/) and targets the
17
17
### Features provided by the core Tensor library
18
18
19
19
* Core features
20
-
* n-dimensional arrays (tensors) in host memory or on CUDA GPUs
20
+
* n-dimensional arrays (tensors) in host memory or on CUDA GPUs
Copy file name to clipboardExpand all lines: Tensor/Tensor.Docs/index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ A *tensor* is an n-dimensional array of an arbitrary data type (for example `sin
6
6
Tensors of data type `'T` are implemented by the [Tensor<'T>](xref:Tensor.Tensor`1) type.
7
7
8
8
A tensor can be either stored in host memory or in the memory of a GPU computing device.
9
-
Currenty only nVidia cards implementing the [CUDA API](https://developer.nvidia.com/cuda-zone) are supported.
9
+
Currently only nVidia cards implementing the [CUDA API](https://developer.nvidia.com/cuda-zone) are supported.
10
10
The API for host and GPU stored tensors is mostly equal, thus a program can make use of GPU accelerated operations without porting effort.
11
11
12
12
The tensor library provides functionality similar to [Numpy's Ndarray](http://docs.scipy.org/doc/numpy-1.10.0/reference/arrays.html) and [MATLAB arrays](http://www.mathworks.com/help/matlab/matrices-and-arrays.html), including vector-wise operations, reshaping, slicing, broadcasting, masked assignment, reduction operations and BLAS operations.
@@ -36,7 +36,7 @@ This open source library is written in [F#](http://fsharp.org/) and targets the
0 commit comments