mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-23 05:35:13 +00:00
Add packed recarray tests
This commit is contained in:
parent
2e1565e414
commit
8502f542b3
@ -2,23 +2,24 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from example import create_rec_simple
|
from example import create_rec_simple, create_rec_packed
|
||||||
|
|
||||||
|
|
||||||
def check_eq(arr, data, dtype):
|
def check_eq(arr, data, dtype):
|
||||||
np.testing.assert_equal(arr, np.array(data, dtype=dtype))
|
np.testing.assert_equal(arr, np.array(data, dtype=dtype))
|
||||||
|
|
||||||
dtype = np.dtype({'names': ['x', 'y', 'z'],
|
simple_dtype = np.dtype({'names': ['x', 'y', 'z'],
|
||||||
'formats': ['?', 'u4', 'f4'],
|
'formats': ['?', 'u4', 'f4'],
|
||||||
'offsets': [0, 4, 8]})
|
'offsets': [0, 4, 8]})
|
||||||
base_dtype = np.dtype([('x', '?'), ('y', 'u4'), ('z', 'f4')])
|
packed_dtype = np.dtype([('x', '?'), ('y', 'u4'), ('z', 'f4')])
|
||||||
|
|
||||||
arr = create_rec_simple(3)
|
for func, dtype in [(create_rec_simple, simple_dtype), (create_rec_packed, packed_dtype)]:
|
||||||
assert arr.dtype == dtype
|
arr = func(3)
|
||||||
check_eq(arr, [(False, 0, 0.0), (True, 1, 1.5), (False, 2, 3.0)], dtype)
|
assert arr.dtype == dtype
|
||||||
check_eq(arr, [(False, 0, 0.0), (True, 1, 1.5), (False, 2, 3.0)], base_dtype)
|
check_eq(arr, [(False, 0, 0.0), (True, 1, 1.5), (False, 2, 3.0)], simple_dtype)
|
||||||
|
check_eq(arr, [(False, 0, 0.0), (True, 1, 1.5), (False, 2, 3.0)], packed_dtype)
|
||||||
|
|
||||||
arr = create_rec_simple(0)
|
arr = func(0)
|
||||||
assert arr.dtype == dtype
|
assert arr.dtype == dtype
|
||||||
check_eq(arr, [], dtype)
|
check_eq(arr, [], simple_dtype)
|
||||||
check_eq(arr, [], base_dtype)
|
check_eq(arr, [], packed_dtype)
|
||||||
|
Loading…
Reference in New Issue
Block a user