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/Tensor.Docs/articles/Guide-Installation.md
+7-30
Original file line number
Diff line number
Diff line change
@@ -13,32 +13,18 @@ The following system requirements must be met.
13
13
* .NET Framework >= 4.7 is supported
14
14
*[Mono](https://www.mono-project.com/download/stable/) >= 5.10 is supported, but significantly slower
15
15
* For Linux
16
-
* The library `libgomp.so.1` must be installed. (install on Ubuntu by running `apt install libgomp1`)
17
-
* For MacOS
18
-
*[HDF5 libraries](https://support.hdfgroup.org/HDF5/) (install from [Homebrew](https://brew.sh/) by running `brew install hdf5`)
16
+
* The library `libgomp.so.1` must be installed. (install on Ubuntu by running `sudo apt install libgomp1`)
19
17
* For GPU acceleration (optional)
20
18
* nVidia GPU supporting [CUDA compute capability](https://developer.nvidia.com/cuda-gpus) 3.5 or higher
21
19
*[nVidia GPU driver](http://www.nvidia.com/Download/index.aspx) 387.92 or higher
22
20
23
21
## Installation
24
22
25
-
The library is provided as a NuGet package.
26
-
Since we have made modifications (porting to .NET core) to our dependencies and these changes have not yet been merged upstream, a [MyGet](https://myget.org/) feed is currently used to deliever the library and its modified dependencies.
27
-
Once all necessary modifications have been merged upstream, the Tensor library will be delivered via standard [NuGet](https://nuget.org).
23
+
The library is delivered in two NuGet packages.
24
+
The [Tensor NuGet package](https://www.nuget.org/packages/Tensor) provides the [Tensor<'T>](xref:Tensor.Tensor`1) type and all core functions.
25
+
Additional algorithms and data exchange methods are provided in the [Tensor.Algorithm NuGet package](https://www.nuget.org/packages/Tensor.Algorithm).
28
26
29
-
For MacOS you must make sure that the HDF5 libraries are installed on your system.
30
-
They can be installed via [Homebrew](https://brew.sh/) by running `brew install hdf5`.
31
-
32
-
The library is deliverd in two NuGet packages.
33
-
The [Tensor NuGet package](https://www.myget.org/feed/coreports/package/nuget/Tensor) provides the [Tensor<'T>](xref:Tensor.Tensor`1) type and all core functions.
34
-
Additional algorithms and data exchange methods are provided in the [Tensor.Algorithm NuGet package](https://www.myget.org/feed/coreports/package/nuget/Tensor.Algorithm).
35
-
36
-
The packages can be installed into your project by performing the following steps.
37
-
38
-
1. Add the NuGet feed <https://www.myget.org/feed/Packages/coreports> to your project.
39
-
This can be done by adding the line ```<add key="CorePorts" value="https://www.myget.org/F/coreports/api/v3/index.json"/>``` to the `packageSources` section of your project `NuGet.config` file.
40
-
41
-
1. Install the `Tensor` and `Tensor.Algorithm` using the NuGet package manager (either via command line or graphical interface).
27
+
The packages can be installed into your project by installing the `Tensor` and `Tensor.Algorithm` packages using the NuGet package manager (either via command line or graphical interface).
42
28
43
29
## Skeleton project for .NET Core
44
30
@@ -51,16 +37,8 @@ $ mkdir tutorial
51
37
$ cd tutorial
52
38
$ dotnet new console -lang F#
53
39
```
54
-
Then, create the file `NuGet.config` in the project directory with the following contents.
Copy file name to clipboardExpand all lines: Tensor/Tensor.Docs/index.md
+2
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,8 @@ This open source library is written in [F#](http://fsharp.org/) and targets the
46
46
47
47
## News
48
48
49
+
***2018/05/07**. Packages are now available on public NuGet. [Tensor NuGet package](https://www.nuget.org/packages/Tensor) and [Tensor.Algorithm NuGet package](https://www.nuget.org/packages/Tensor.Algorithm).
50
+
49
51
***2018/05/05**. [The CUDA SDK is no longer required for using GPU acceleration](articles/ReleaseNotes.md).
50
52
An up-to-date nVidia GPU driver must be installed, however.
0 commit comments