test_topi_conv2d_nhwc.py 2.25 KB
Newer Older
1 2 3 4 5
"""Example code to do convolution."""
import os
import numpy as np
import tvm
import topi
6
import topi.testing
7 8 9 10
from tvm.contrib.pickle_memoize import memoize
from topi.util import get_const_tuple


11
def verify_conv2d_nhwc(batch, in_channel, in_size, num_filter, kernel, stride, padding, dilation=1):
12 13 14 15
    in_height = in_width = in_size

    A = tvm.placeholder((batch, in_height, in_width, in_channel), name='A')
    W = tvm.placeholder((kernel, kernel, in_channel, num_filter), name='W')
16
    B = topi.nn.conv2d_nhwc(A, W, stride, padding, dilation)
17 18 19 20 21

    a_shape = get_const_tuple(A.shape)
    w_shape = get_const_tuple(W.shape)
    dtype = A.dtype

22
    @memoize("topi.tests.test_topi_conv2d_nhwc.verify_nhwc.v2")
23 24 25
    def get_ref_data():
        a_np = np.random.uniform(size=a_shape).astype(dtype)
        w_np = np.random.uniform(size=w_shape).astype(dtype)
26
        dw_np = topi.testing.dilate_python(w_np, (dilation, dilation, 1, 1))
27
        b_np = topi.testing.conv2d_nhwc_python(a_np, dw_np, stride, padding)
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
        return a_np, w_np, b_np
    a_np, w_np, b_np = get_ref_data()

    def check_device(device):
        if not tvm.module.enabled(device):
            print("Skip because %s is not enabled" % device)
            return
        print("Running on target: %s" % device)
        with tvm.target.create(device):
            s = topi.generic.schedule_conv2d_nhwc([B])
        ctx = tvm.context(device, 0)
        a = tvm.nd.array(a_np, ctx)
        w = tvm.nd.array(w_np, ctx)
        b = tvm.nd.array(np.zeros(get_const_tuple(B.shape), dtype=B.dtype), ctx)
        func = tvm.build(s, [A, W, B], device)
        func(a, w, b)
44
        tvm.testing.assert_allclose(b.asnumpy(), b_np, rtol=1e-5)
45 46 47 48 49 50 51 52 53 54 55 56 57

    for device in ['llvm']:
        check_device(device)


def test_conv2d_nhwc():
    verify_conv2d_nhwc(1, 256, 32, 256, 3, 1, "SAME")
    verify_conv2d_nhwc(4, 128, 16, 128, 5, 2, "SAME")
    verify_conv2d_nhwc(4, 128, 16, 256, 5, 2, "SAME")
    verify_conv2d_nhwc(1, 256, 32, 256, 3, 1, "VALID")
    verify_conv2d_nhwc(1, 256, 32, 256, 3, 1, "VALID")
    verify_conv2d_nhwc(4, 128, 16, 128, 5, 2, "VALID")
    verify_conv2d_nhwc(4, 128, 16, 256, 5, 2, "VALID")
58 59
    # dilation = 2
    verify_conv2d_nhwc(1, 256, 32, 256, 3, 1, "SAME", dilation=2)
60 61 62 63


if __name__ == "__main__":
    test_conv2d_nhwc()