feat: support up to 16-bit signed integers with table lookups

This commit is contained in:
Umut
2022-11-21 14:27:28 +01:00
parent ad9c3beee7
commit 23337e9dbd
6 changed files with 49 additions and 59 deletions

View File

@@ -635,6 +635,13 @@ def deterministic_unary_function(x):
},
id="np.expand_dims(x, axis=(0, 1, 2))",
),
pytest.param(
lambda x: x**3,
{
"x": {"status": "encrypted", "range": [-30, 30]},
},
id="x ** 3",
),
],
)
def test_others(function, parameters, helpers):