From b94de272f344d3e392c99c768420387fead05cf0 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Mon, 15 Jan 2024 16:03:38 +0000 Subject: [PATCH] Update integer conversion test to fix issue with int64. --- aidge_backend_cpu/unit_tests/test_tensor.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/aidge_backend_cpu/unit_tests/test_tensor.py b/aidge_backend_cpu/unit_tests/test_tensor.py index 438b6acd..830b5cb5 100644 --- a/aidge_backend_cpu/unit_tests/test_tensor.py +++ b/aidge_backend_cpu/unit_tests/test_tensor.py @@ -16,7 +16,7 @@ class test_tensor(unittest.TestCase): self.assertTrue("cpu" in aidge_core.Tensor.get_available_backends()) def test_numpy_int_to_tensor(self): - np_array = np.arange(9).reshape(1,1,3,3) + np_array = np.arange(9).reshape(1,1,3,3).astype(np.int32) # Numpy -> Tensor t = aidge_core.Tensor(np_array) self.assertEqual(t.dtype(), aidge_core.DataType.Int32) @@ -35,6 +35,16 @@ class test_tensor(unittest.TestCase): for i,j in zip(t.dims(), nnarray.shape): self.assertEqual(i,j) + def test_numpy_int64_to_tensor(self): + np_array = np.arange(9).reshape(1,1,3,3).astype(np.int64) + # Numpy -> Tensor + t = aidge_core.Tensor(np_array) + self.assertEqual(t.dtype(), aidge_core.DataType.Int64) + for i_t, i_n in zip(t, np_array.flatten()): + self.assertTrue(i_t == i_n) + for i,j in zip(t.dims(), np_array.shape): + self.assertEqual(i,j) + def test_numpy_float_to_tensor(self): t = aidge_core.Tensor() np_array = np.random.rand(1, 1, 3, 3).astype(np.float32) -- GitLab