no reason to demand float32 yet

This commit is contained in:
Jan Petykiewicz 2019-07-22 00:27:48 -07:00
parent 89976647f2
commit 39c05d2cab

View File

@ -303,8 +303,8 @@ class JdotE_3DUniformDX(unittest.TestCase):
self.epsilon = numpy.full(shape, 4, dtype=float)
self.epsilon[self.src_mask] = 2
e = numpy.random.randint(-128, 128 + 1, size=shape).astype(numpy.float32)
h = numpy.random.randint(-128, 128 + 1, size=shape).astype(numpy.float32)
e = numpy.random.randint(-128, 128 + 1, size=shape).astype(float)
h = numpy.random.randint(-128, 128 + 1, size=shape).astype(float)
self.es = [e]
self.hs = [h]