The Wayback Machine - https://web.archive.org/web/20210801004912/https://github.com/topics/numba
Skip to content
#

numba

Here are 199 public repositories matching this topic...

domokane
domokane commented Jun 13, 2021

The new pep8 compliant branch of this project urgently needs unit tests.

There are already many tests under the golden folder.

What needs to be done is for someone to migrate tests from golden to units test format. A single test for each function would be a good start. There is already a test example that you can use as a guide.

Let me know if you need more information.

nsmith-
nsmith- commented Jan 22, 2021

We can add to a highlevel array with a record, e.g.

a = ak.Array({"x": [1, 2, 3], "y": [4, 5, 6]})
a["z"] = [7, 8, 9]

but we can't delete:

del a["z"]  # AttributeError
a["z"] = None  # makes a numpy object array
transonic

Improve this page

Add a description, image, and links to the numba topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the numba topic, visit your repo's landing page and select "manage topics."

Learn more