Hacker News new | ask | show | jobs
by andreasvc 4319 days ago
But why do you prefer it over Cython, since it can also wrap "actual, pure C, and dynamically [call] it from Python"?

What is the vectorization problem? Both Cython and Julia allow you to write tight loops and have them perform well.

1 comments

In CFFI, you write either Python, or C. In Cython, you additionally write a weird dialect that is neither C nor Python. I prefer straight C over Cython.