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

def verify_softmax(m, n):
    A = tvm.placeholder((m, n), name='A')
    B = topi.nn.softmax(A)
12 13 14 15
    # confirm lower works
    s = tvm.create_schedule([B.op])
    tvm.lower(s, [A, B], simple_mode=True)

16 17 18 19
    a_np = np.random.uniform(size=get_const_tuple(A.shape)).astype(A.dtype)
    b_np = topi.testing.softmax_python(a_np)

    def check_device(device):
20 21
        ctx = tvm.context(device, 0)
        if not ctx.exist:
22 23
            print("Skip because %s is not enabled" % device)
            return
24
        print("Running on target: %s" % device)
25 26
        with tvm.target.create(device):
            s = topi.generic.schedule_softmax(B)
27

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

34
    for device in ['cuda', 'opencl', 'metal', 'rocm', 'vulkan']:
35
        check_device(device)
36 37 38

def test_softmax():
    verify_softmax(32, 10)
39
    verify_softmax(3, 4)
40 41


42 43 44 45 46 47 48 49 50 51
def verify_log_softmax(m, n):
    A = tvm.placeholder((m, n), name='A')
    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)

    def check_device(device):
52 53
        ctx = tvm.context(device, 0)
        if not ctx.exist:
54 55
            print("Skip because %s is not enabled" % device)
            return
56
        print("Running on target: %s" % device)
57 58
        with tvm.target.create(device):
            s = topi.generic.schedule_softmax(B)
59 60 61 62 63 64
        a = tvm.nd.array(a_np, ctx)
        b = tvm.nd.array(np.zeros(get_const_tuple(B.shape), dtype=B.dtype), ctx)
        foo = tvm.build(s, [A, B], device, name="log_softmax")
        foo(a, b)
        np.testing.assert_allclose(b.asnumpy(), b_np, rtol=1e-5)

65
    for device in ["cuda", "opencl", "metal", "rocm", "vulkan"]:
66 67
        check_device(device)

68

69 70 71 72
def test_log_softmax():
    verify_log_softmax(32, 10)
    verify_log_softmax(3, 4)

73
if __name__ == "__main__":
74
    logging.basicConfig(level=logging.DEBUG)
75
    test_softmax()
76
    test_log_softmax()