| <%inherit file="base.tpl.cpp"/>\ |
| <%namespace name="tests" file="opivv_opivx_test.tpl.cpp"/> |
| <% |
| import numpy as np |
| import vec_test_helpers |
| template_helper = vec_test_helpers.VecTemplateHelper(op, 32) |
| template_helper.force_unsigned = True |
| src2, src1, rs1 = template_helper.get_test_inputs(n=5) |
| src2_type = template_helper.get_np_src2_type() |
| tmp_src1 = src1 & (src2_type(0).itemsize * 8 -1) |
| ref_vv = np.right_shift(src2, tmp_src1) |
| tmp_rs1 = rs1 & (src2_type(0).itemsize * 8 - 1) |
| ref_vx = np.right_shift(src2, tmp_rs1) |
| %>\ |
| ${tests.test_opivv_opivx(template_helper, src2, src1, rs1, ref_vv, ref_vx)} |