forked from root-project/root
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray_interface.py
More file actions
50 lines (40 loc) · 1.55 KB
/
array_interface.py
File metadata and controls
50 lines (40 loc) · 1.55 KB
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
import unittest
import ROOT
import numpy as np
class ArrayInterface(unittest.TestCase):
# Helpers
dtypes = [
"int", "unsigned int", "long", "unsigned long", "float", "double"
]
def get_maximum_for_dtype(self, dtype):
if np.issubdtype(dtype, np.integer):
return np.iinfo(dtype).max
if np.issubdtype(dtype, np.floating):
return np.finfo(dtype).max
def get_minimum_for_dtype(self, dtype):
if np.issubdtype(dtype, np.integer):
return np.iinfo(dtype).min
if np.issubdtype(dtype, np.floating):
return np.finfo(dtype).min
def check_memory_adoption(self, root_obj, np_obj):
root_obj[0] = self.get_maximum_for_dtype(np_obj.dtype)
root_obj[1] = self.get_minimum_for_dtype(np_obj.dtype)
self.assertEqual(root_obj[0], np_obj[0])
self.assertEqual(root_obj[1], np_obj[1])
def check_shape(self, expected_shape, np_obj):
self.assertEqual(expected_shape, np_obj.shape)
# Tests
def test_TVec(self):
for dtype in self.dtypes:
root_obj = ROOT.VecOps.RVec(dtype)(2)
np_obj = np.asarray(root_obj)
self.check_memory_adoption(root_obj, np_obj)
self.check_shape((2, ), np_obj)
def test_STLVector(self):
for dtype in self.dtypes:
root_obj = ROOT.std.vector(dtype)(2)
np_obj = np.asarray(root_obj)
self.check_memory_adoption(root_obj, np_obj)
self.check_shape((2, ), np_obj)
if __name__ == '__main__':
unittest.main()