예제 #1
0
 def test_three(self):
     self.assertEqual(core._get_contiguous_strides((1, 2, 3), 4),
                      [24, 12, 4])
예제 #2
0
 def test_one(self):
     self.assertEqual(core._get_contiguous_strides((1, ), 2), [2])
예제 #3
0
 def test_two(self):
     self.assertEqual(core._get_contiguous_strides((1, 2), 3), [6, 3])
예제 #4
0
 def test_zero(self):
     self.assertEqual(core._get_contiguous_strides((), 1), [])
예제 #5
0
 def test_three(self):
     self.assertEqual(core._get_contiguous_strides((1, 2, 3), 4),
                      [24, 12, 4])
예제 #6
0
 def test_two(self):
     self.assertEqual(core._get_contiguous_strides((1, 2), 3), [6, 3])
예제 #7
0
 def test_one(self):
     self.assertEqual(core._get_contiguous_strides((1,), 2), [2])
예제 #8
0
 def test_zero(self):
     self.assertEqual(core._get_contiguous_strides((), 1), [])