Esempio n. 1
0
 def test_reduce_sum_axis(self):
     self.assertTrue(
         np.array_equal(reduce_sum(self.test_np, axis=0), [4, 5]))
Esempio n. 2
0
 def test_reduce_sum_torch_value(self):
     self.assertTrue(np.array_equal(reduce_sum(self.test_torch).numpy(), 6))
Esempio n. 3
0
 def test_reduce_sum_torch_type(self):
     self.assertIsInstance(reduce_sum(self.test_torch), torch.Tensor,
                           'Output type must be torch.Tensor')
Esempio n. 4
0
 def test_reduce_sum_tf_type(self):
     self.assertIsInstance(reduce_sum(self.test_tf), tf.Tensor,
                           'Output type must be tf.Tensor')
Esempio n. 5
0
 def test_reduce_sum_np_value(self):
     self.assertEqual(reduce_sum(self.test_np), 9)
Esempio n. 6
0
 def test_reduce_sum_np_type(self):
     self.assertIsInstance(reduce_sum(self.test_np), np.ScalarType,
                           'Output type must be NumPy')