| <%inherit file="base.tpl.cpp"/>\ | |
| <%namespace name="tests_vv" file="opivv_test.tpl.cpp"/>\ | |
| <%namespace name="tests_vf" file="opivf_test.tpl.cpp"/>\ | |
| <% | |
| import numpy as np | |
| import vec_test_helpers | |
| template_helper = vec_test_helpers.VecTemplateHelper(op, 32) | |
| src2, src1, rs1 = template_helper.get_test_inputs(n=5) | |
| ref_vv = src2 + src1 | |
| ref_vf = src2 + rs1 | |
| %>\ | |
| ${tests_vv.test_opivv(template_helper, src2, src1, ref_vv)} | |
| ${tests_vf.test_opivf(template_helper, src2, rs1, ref_vf)} | |