A Python Compiler for Big Data
continuum.io
A Python Compiler for Big Data
1–10 of 36 posts
Re: A Python Compiler for Big Data
#2Because our implementation does not explicitly depend on Python we are able to overcome many of the shortcomings of the Python runtime such as running without the GIL and utilising real threads to dispatch custom Numba kernels running at near C speed without the performance limitations of Python.
Re: A Python Compiler for Big Data
#3I just want to point this out because I feel like there's a good chance a lot of people won't have gotten this far: Because our implementation does not explicitly depend on Python we are able to overcome many of the shortcomings of the Python runtime such as running without the GIL and utilising real threads to dispatch custom Numba kernels running at near C speed without the performance limitations of Python.
In case many people didn't reach the bottom here are the links to the repo and the docs. The project is still in early stages, but is public and released under a BSD license.
Re: A Python Compiler for Big Data
#4Re: A Python Compiler for Big Data
#5I read about continuum after the fellow who developed numpy left a few days ago to work on continuum. I am curious to see actual projects using continuum. So some sort of writeups.
Re: A Python Compiler for Big Data
#6Re: A Python Compiler for Big Data
#7It would be great to eventually have a GPU version as well (as in the cases of Matlab and R). I saw a brief demo of Matlab on a Mac Retina Pro 15 where the GPU version ran 30x the CPU version.
Re: A Python Compiler for Big Data
#8I'm starting to run into some performance bottlenecks with Python, and so I'm just now looking at Cython, PyPy, Psyco, and... gasp... C.
From what little I've read, Cython is supposed to be as easy as adding some typing and modifying a few loops here and there, and you are in business.
Re: A Python Compiler for Big Data
#9Bit of a tangent, but I'm wondering if anyone here has had any luck with Cython? I'm starting to run into some performance bottlenecks with Python, and so I'm just now looking at Cython, PyPy, Psyco, and... gasp... C. From what little I've read, Cython is supposed to be as easy as adding some typing and modifying a few loops here and there, and you are in business.
http://benchmarksgame.alioth.debian.org/u32/which-programs-a...
http://en.wikipedia.org/wiki/Lua_(programming_language)#C_AP...
Re: A Python Compiler for Big Data
#10Bit of a tangent, but I'm wondering if anyone here has had any luck with Cython? I'm starting to run into some performance bottlenecks with Python, and so I'm just now looking at Cython, PyPy, Psyco, and... gasp... C. From what little I've read, Cython is supposed to be as easy as adding some typing and modifying a few loops here and there, and you are in business.
LUA might be good for this too, it's pretty fast on it's own but from what I've read (not tested mind you) their C API is supposed to be pretty great. http://benchmarksgame.alioth.debian.org/u32/which-programs-a... http://en.wikipedia.org/wiki/Lua_(programming_language)#C_AP...