numba
Here are 153 public repositories matching this topic...
-
Updated
Sep 7, 2020 - Python
-
Updated
Apr 1, 2020 - Python
-
Updated
Nov 8, 2019 - Jupyter Notebook
-
Updated
Aug 6, 2020 - Jupyter Notebook
Some functions take a date as an input. However I would like to be able to pass in a vector/list of dates and/or a vector of enums and get a corresponding vector of values.
This is shown in notebook
Consider f(x,y,z). Behaviour that would be good
- If x
-
Updated
Sep 6, 2020 - Python
-
Updated
Oct 5, 2020 - Python
It's useful to have the opposite of ak.flatten:
>>> original = ak.Array([[0, 1, 2], [], [3, 4], [5], [6, 7, 8, 9]])
>>> counts = ak.num(original)
>>> array = ak.flatten(original)
>>> counts
<Array [3, 0, 2, 1, 4] type='5 * int64'>
>>> array
<Array [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] type='10 * int64'>
>>> ak.unflatten(array, counts)
<Array [[0, 1, 2], [], ... [5], [6, 7, 8, 9]] -
Updated
Nov 12, 2020 - Python
-
Updated
Mar 15, 2020 - Jupyter Notebook
-
Updated
Jul 23, 2020 - Jupyter Notebook
See https://numba.pydata.org/numba-doc/dev/user/performance-tips.html#fastmath
Simple to implement:
With the last commit kratzert/RRMPG@27e420d all simulation functions were parallelized. We now have the output of the simulation function qsim being optionally a 2D-array, were the second dimension (first for Pythonista) holds the results for different parameter sets. It would now be good, if we could pass this array directly to all the
-
Updated
Sep 21, 2020 - Python
-
Updated
Aug 14, 2020 - Python
-
Updated
Sep 19, 2020 - Jupyter Notebook
-
Updated
Nov 13, 2020 - Python
-
Updated
Nov 3, 2020 - Python
-
Updated
Nov 28, 2020 - Python
-
Updated
Apr 15, 2019 - Jupyter Notebook
-
Updated
Nov 16, 2020 - Python
-
Updated
Aug 29, 2020 - C++
-
Updated
Nov 30, 2020 - Python
-
Updated
Feb 8, 2019 - Python
Improve this page
Add a description, image, and links to the numba topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the numba topic, visit your repo's landing page and select "manage topics."
See Table 2 in the original paper found here
The corresponding website can be found here