Skip to content
Snippets Groups Projects
Commit 3f0bf14f authored by auphelia's avatar auphelia
Browse files

[Test] set odt to INT32 for depthwise conv lowering test

parent 0ab8a37a
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,8 @@ def test_conv_lowering_cnv_w1a1():
# padding
@pytest.mark.parametrize("padding", [[0, 0, 0, 0], [1, 1, 1, 1]])
def test_depthwise_conv_lowering(idt, k, ifm_dim, ifm_ch, stride, padding):
odt = wdt = idt
wdt = idt
odt = DataType.INT32
ofm_ch = ifm_ch
ofm_dim = compute_conv_output_dim(ifm_dim, k, stride, pad=padding[0])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment