Skip to content

Commit 7fd0ac4

Browse files
authored
Update README.md
1 parent 50087f4 commit 7fd0ac4

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ The SciSharp team is also developing a pure C# port of NumPy called [NumSharp](h
2626
| Dependencies | CPython / NumPy | C++ dlls for certain operations |
2727
| Setup | Reference Nuget-Package | Reference Nuget-Package |
2828
| Completeness | Large parts are wrapped | A small subset of most important functions is ported |
29-
| Development | Fast, due to automated API generation | Very slow, due to lack of manpower |
30-
| Correctness | Same results as in Python guaranteed | There are many subtle differences |
31-
| Actuality | Can easily keep up with `numpy` dev | Will always trail way behind, due to lack of manpower |
29+
| Development | Fast, due to automated API generation | Slow, due to lack of manpower |
30+
| Correctness | Same results as in Python guaranteed | There are subtle differences |
31+
| Actuality | Can easily keep up with `numpy` dev | Will trail behind, due to lack of manpower |
3232
| GPU support | None | Using a GPU backend for calculatons possible, per design |
3333
| Performance | TODO: measure | TODO: measure |
3434

3535
## Code generation
3636

37-
The vast majority of Numpy.NET's code is generated using [CodeMinion](https://github.com/SciSharp/CodeMinion) by parsing the documentation at [docs.scipy.org/doc/numpy/](docs.scipy.org/doc/numpy/). This allowed us to wrap most of the `numpy`-API in just two weeks. The rest of the API can be completed in a few more weeks if there is popular demand.
37+
The vast majority of Numpy.NET's code is generated using [CodeMinion](https://github.com/SciSharp/CodeMinion) by parsing the documentation at [docs.scipy.org/doc/numpy/](docs.scipy.org/doc/numpy/). This allowed us to wrap most of the `numpy`-API in just two weeks. The rest of the API can be completed in a few more weeks, especially if there is popular demand.
3838

3939
## API Completion
4040

@@ -46,11 +46,15 @@ Currently, Numpy.NET is targeting .NET Standard (on Windows) and packages the fo
4646
* Python 3.7: (python-3.7.3-embed-amd64.zip)
4747
* NumPy 1.16 (numpy-1.16.3-cp37-cp37m-win_amd64.whl)
4848

49-
To make Numpy.NET support Linux a separate version of [Python.Included]() packaging linux binaries of Python needs to be made and a version of Numpy.NET that packages a linux-compatible NumPy wheel.
49+
To make Numpy.NET support Linux a separate version of [Python.Included](https://github.com/henon/Python.Included) packaging linux binaries of Python needs to be made and a version of Numpy.NET that packages a linux-compatible NumPy wheel.
5050

5151
## License
5252

5353
Numpy.NET packages and distributes `Python`, `pythonnet` as well as `numpy`. All these dependencies imprint their license conditions upon Numpy.NET. The C# wrapper itself is MIT License.
5454

55+
* Python: [PSF License](https://docs.python.org/3/license.html)
56+
* Python for .NET (pythonnet): [MIT License](http://pythonnet.github.io/LICENSE)
57+
* NumPy: [BSD License](https://www.numpy.org/license.html#license)
58+
* Numpy.NET: [MIT License](./LICENSE)
5559

5660

0 commit comments

Comments
 (0)