blob: 5a77585fa93f408ada8fa42d24b1e63bc5a78962 [file] [log] [blame]
<%inherit file="base.tpl.cpp"/>\
<%namespace name="tests" file="opivv_opivx_test.tpl.cpp"/>
<%
import numpy as np
src1, src2, rs1 = parent.module.get_test_inputs(np.int32, N=5)
ref_vv = np.right_shift(
src1.astype(np.int64) * src2.astype(np.int64), 32).astype(np.int32)
ref_vx = np.right_shift(
src1.astype(np.int64) * rs1, 32).astype(np.int32)
%>
${tests.test_opivv_opivx("int32_t", op, src1, src2, rs1, ref_vv, ref_vx)}