summaryrefslogtreecommitdiffstats
path: root/python/python3-numba/README
diff options
context:
space:
mode:
Diffstat (limited to 'python/python3-numba/README')
-rw-r--r--python/python3-numba/README9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/python3-numba/README b/python/python3-numba/README
new file mode 100644
index 0000000000..61394f633a
--- /dev/null
+++ b/python/python3-numba/README
@@ -0,0 +1,9 @@
+ Numba translates Python functions to optimized machine code at
+runtime using the industry-standard LLVM compiler library.
+Numba-compiled numerical algorithms in Python can approach the
+speeds of C or FORTRAN.
+
+ You don't need to replace the Python interpreter, run a separate
+compilation step, or even have a C/C++ compiler installed. Just apply
+one of the Numba decorators to your Python function, and Numba does
+the rest.