Difference between revisions of "Numpy"
From IPRE Wiki
Doug Blank (Talk | contribs) (→Options) |
Doug Blank (Talk | contribs) (→Options) |
||
Line 10: | Line 10: | ||
# Write a version of numpy in C# | # Write a version of numpy in C# | ||
## Look to Jython's Numeric (could use IKVM to use directly) | ## Look to Jython's Numeric (could use IKVM to use directly) | ||
− | ### https://bitbucket.org/zornslemon/jnumeric-ra/overview - | + | ### https://bitbucket.org/zornslemon/jnumeric-ra/overview - rewrote C in native Java |
### http://jyni.org/ - talk directly to C | ### http://jyni.org/ - talk directly to C | ||
# Use a bridge to talk to Python and numpy (would require marshaling back and forth) | # Use a bridge to talk to Python and numpy (would require marshaling back and forth) |
Latest revision as of 12:41, 3 June 2014
This page is a list of notes for building a numpy for IronPython, including Mono on Mac, Windows, Linux, etc.
Options
- Write a version of numpy in pure Python
- PyPy - written in RPython and C
- Contacted Tom Hochberg for small bit of Numeric in Python
- Write a version of numpy in C#
- Look to Jython's Numeric (could use IKVM to use directly)
- https://bitbucket.org/zornslemon/jnumeric-ra/overview - rewrote C in native Java
- http://jyni.org/ - talk directly to C
- Look to Jython's Numeric (could use IKVM to use directly)
- Use a bridge to talk to Python and numpy (would require marshaling back and forth)
- Wrap existing numpy
- IronClad - works by reimplementing the Python C API in C#
- Cython -
- http://blog.enthought.com/python/scipy-for-net/#.U42k3x92nfE - Blog on Enthought work
- https://www.enthought.com/repo/.iron/ - Enthought packages
- https://github.com/numpy/numpy-refactor - NumPy for .NET
- https://github.com/jasonmccampbell/scipy-refactor - SciPy for .NET
- https://bitbucket.org/jasonmccampbell/cython-for-ironpython - Cython for .NET
- https://github.com/jasonmccampbell/fwrap - Wrapping Fortran extensions
Notes
- http://legacy.python.org/dev/peps/pep-0465/ - Python3 will have a matrix multiplication operator
- http://technicaldiscovery.blogspot.com/2011/10/thoughts-on-porting-numpy-to-pypy.html