<%inherit file="base.tpl.cpp"/>\ | |
<%namespace name="tests" file="opivv_opivx_test.tpl.cpp"/> | |
<% | |
import numpy as np | |
import vec_test_helpers | |
N = 8 | |
M = 3 | |
template_helper = vec_test_helpers.VecTemplateHelper(op, 32) | |
src2, src1, rs1 = template_helper.get_test_inputs(n=N) | |
ref_vv = template_helper.pack_dest_mask(src2 < src1) | |
ref_vx = template_helper.pack_dest_mask(src2 < rs1) | |
%>\ | |
${tests.test_opivv_opivx(template_helper, src2, src1, rs1, ref_vv, ref_vx)} |