test_topi_softmax.py 2.52 KB
Newer Older
1 2 3 4 5
"""Test code for softmax"""
import os
import numpy as np
import tvm
import topi
6
import topi.testing
7
import logging
8 9
from topi.util import get_const_tuple

10 11
from common import get_all_backend

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
def check_device(A, B, a_np, b_np, device, name):
    ctx = tvm.context(device, 0)
    if not ctx.exist:
        print("Skip because %s is not enabled" % device)
        return
    print("Running on target: %s" % device)
    with tvm.target.create(device):
        s = topi.generic.schedule_softmax(B)

    a = tvm.nd.array(a_np, ctx)
    b = tvm.nd.array(np.zeros(get_const_tuple(B.shape), dtype=B.dtype), ctx)
    f = tvm.build(s, [A, B], device, name="softmax")
    f(a, b)
    tvm.testing.assert_allclose(b.asnumpy(), b_np, rtol=1e-5)

27 28
def verify_softmax(m, n, dtype="float32"):
    A = tvm.placeholder((m, n), dtype=dtype, name='A')
29
    B = topi.nn.softmax(A)
30 31 32 33
    # confirm lower works
    s = tvm.create_schedule([B.op])
    tvm.lower(s, [A, B], simple_mode=True)

34 35 36
    a_np = np.random.uniform(size=get_const_tuple(A.shape)).astype(A.dtype)
    b_np = topi.testing.softmax_python(a_np)

37 38 39 40 41 42
    for device in ['cuda', 'opencl', 'metal', 'rocm', 'vulkan', 'nvptx']:
        check_device(A, B, a_np, b_np, device, "softmax")

def verify_softmax_4d(shape, dtype="float32"):
    A = tvm.placeholder(shape, dtype=dtype, name='A')
    B = topi.nn.softmax(A, axis=1)
43

44 45 46 47
    _, c, h, w = shape
    a_np = np.random.uniform(size=get_const_tuple(A.shape)).astype(A.dtype)
    b_np = topi.testing.softmax_python(a_np.transpose(0, 2, 3, 1).reshape(h*w, c))
    b_np = b_np.reshape(1, h, w, c).transpose(0, 3, 1, 2)
48

49
    for device in ['cuda', 'opencl', 'metal', 'rocm', 'vulkan', 'nvptx']:
50
        check_device(A, B, a_np, b_np, device, "softmax")
51 52 53

def test_softmax():
    verify_softmax(32, 10)
54
    verify_softmax(3, 4)
55
    verify_softmax(32, 10, "float64")
56
    verify_softmax_4d((1, 16, 256, 256))
57

58 59
def verify_log_softmax(m, n, dtype="float32"):
    A = tvm.placeholder((m, n), dtype=dtype, name='A')
60 61 62 63 64 65 66
    B = topi.nn.log_softmax(A)
    # confirm lower works
    s = tvm.create_schedule([B.op])
    tvm.lower(s, [A, B], simple_mode=True)
    a_np = np.random.uniform(size=get_const_tuple(A.shape)).astype(A.dtype)
    b_np = topi.testing.log_softmax_python(a_np)

67
    for device in get_all_backend():
68
        check_device(A, B, a_np, b_np, device, "log_softmax")
69

70

71 72 73
def test_log_softmax():
    verify_log_softmax(32, 10)
    verify_log_softmax(3, 4)
74
    verify_log_softmax(32, 10, "float64")
75

76
if __name__ == "__main__":
77
    logging.basicConfig(level=logging.DEBUG)
78
    test_softmax()
79
    test_log_softmax()