numpile icon indicating copy to clipboard operation
numpile copied to clipboard

A tiny 1000 line LLVM-based numeric specializer for scientific Python code.

Results 5 numpile issues
Sort by recently updated
recently updated
newest added

This is a very good tutorial, I found two small problems in Python3, and gave a fix: - Fix that it cannot compile normally when the return value is constant....

For information of people who may be interested in doing further work on numpile, already known forks (in the order of appearance): * https://github.com/lidavidm/accelerando by @lidavidm, what's done: split the...

``` Python In [2]: from numpile import autojit In [3]: %cpaste Pasting code; enter '--' alone on the line to stop or use Ctrl-D. :@autojit :def dot(a, b): : c...

`InfiniteType` doesn't exist: https://github.com/sdiehl/numpile/blob/73c0dad97ebce73c0c370b890d8188cffc3b43d4/numpile.py#L370 @sdiehl - Should this be change to `raise TypeError`? Or something else?

The dot example gives wrong result due to an overflow in int32 accumulator. This PR fixes it by working with int64 arrays instead. To make this change feasible the following...