Difference between revisions of "Numpy"
From IPRE Wiki
Doug Blank (Talk | contribs) (→Options) |
Doug Blank (Talk | contribs) (→Options) |
||
Line 17: | Line 17: | ||
## PyPy - written in RPython? | ## PyPy - written in RPython? | ||
### https://bitbucket.org/pypy/numpy | ### https://bitbucket.org/pypy/numpy | ||
+ | ### http://buildbot.pypy.org/numpy-status/latest.html - status | ||
## Cython - | ## Cython - | ||
### http://blog.enthought.com/python/scipy-for-net/#.U42k3x92nfE - Blog on Enthought work | ### http://blog.enthought.com/python/scipy-for-net/#.U42k3x92nfE - Blog on Enthought work |
Revision as of 11:16, 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
- 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 - rewrite
- 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#
- PyPy - written in RPython?
- 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