chore: remove manually set uint8 dtypes in tests as it's done automatically

This commit is contained in:
Umut
2022-05-30 12:56:20 +02:00
parent ce1712c67c
commit 8a60a979cb
5 changed files with 7 additions and 7 deletions

View File

@@ -64,7 +64,7 @@ def test_conv2d(input_shape, weight_shape, strides, dilations, has_bias, helpers
inputset = [np.random.randint(0, 4, size=input_shape) for i in range(100)]
circuit = function.compile(inputset, configuration)
sample = np.random.randint(0, 4, size=input_shape, dtype=np.uint8)
sample = np.random.randint(0, 4, size=input_shape)
helpers.check_execution(circuit, function, sample)