1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
# BSD 3-Clause License; see https://github.com/scikit-hep/awkward/blob/main/LICENSE
from __future__ import annotations
import gc
import sys
import numpy as np # noqa: F401
import pytest
import awkward as ak
numba = pytest.importorskip("numba")
ak.numba.register_and_check()
def test_refcount():
array = ak.highlevel.Array([1, 2, 3])
@numba.njit
def f1():
array # noqa: B018 (we want to test the unboxing)
return 3.14
@numba.njit
def f2():
array, array # noqa: B018 (we want to test the unboxing)
return 3.14
assert sys.getrefcount(array) == 2
f1()
assert sys.getrefcount(array) == 3
f2()
assert sys.getrefcount(array) == 5
del f1
gc.collect()
assert sys.getrefcount(array) == 4
def test_Array():
array = ak.highlevel.Array([1, 2, 3])
@numba.njit
def f1():
array # noqa: B018 (we want to test the unboxing)
return 3.14
f1()
assert (
sys.getrefcount(array._numbaview),
sys.getrefcount(array._numbaview.lookup),
) == (2, 2)
@numba.njit
def f2():
return array
a = f2()
assert a.to_list() == [1, 2, 3]
assert (
sys.getrefcount(array._numbaview),
sys.getrefcount(array._numbaview.lookup),
) == (2, 2)
@numba.njit
def f3():
return array, array
b, c = f3()
assert b.to_list() == [1, 2, 3]
assert c.to_list() == [1, 2, 3]
assert (
sys.getrefcount(array._numbaview),
sys.getrefcount(array._numbaview.lookup),
) == (2, 2)
del a
assert (
sys.getrefcount(array._numbaview),
sys.getrefcount(array._numbaview.lookup),
) == (2, 2)
del b
assert (
sys.getrefcount(array._numbaview),
sys.getrefcount(array._numbaview.lookup),
) == (2, 2)
del c
assert (
sys.getrefcount(array._numbaview),
sys.getrefcount(array._numbaview.lookup),
) == (2, 2)
@numba.njit
def f4():
return array[1]
assert f4() == 2
assert (
sys.getrefcount(array._numbaview),
sys.getrefcount(array._numbaview.lookup),
) == (2, 2)
def test_Record():
record = ak.Record({"x": 1, "y": [1, 2, 3]})
@numba.njit
def f1():
return record.y[1]
assert f1() == 2
def test_ArrayBuilder():
builder = ak.highlevel.ArrayBuilder()
assert sys.getrefcount(builder._layout) == 3
@numba.njit
def f():
builder.append(1)
builder.append(2)
builder.append(3)
return builder, builder
@numba.njit
def g():
builder.append(1)
builder.append(2)
builder.append(3)
b, c = f()
assert b.snapshot().to_list() == [1, 2, 3]
assert c.snapshot().to_list() == [1, 2, 3]
assert builder.snapshot().to_list() == [1, 2, 3]
assert sys.getrefcount(builder._layout) == 5
g()
assert b.snapshot().to_list() == [1, 2, 3, 1, 2, 3]
assert c.snapshot().to_list() == [1, 2, 3, 1, 2, 3]
assert builder.snapshot().to_list() == [1, 2, 3, 1, 2, 3]
assert sys.getrefcount(builder._layout) == 5
del b._layout
assert sys.getrefcount(builder._layout) == 4
del c._layout
assert sys.getrefcount(builder._layout) == 3
|