diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-14 14:46:40 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-07-14 14:46:40 +0300 |
commit | dcca95ebeef7ad047b437c7e65bcd2d33784cae4 (patch) | |
tree | 39a3f9834df0dc7c27d080efef15c22889730dc5 /tests/bner_f.c | |
parent | 215ac4569f897b10215248c4caa3191919a555df (diff) | |
download | ejit-dcca95ebeef7ad047b437c7e65bcd2d33784cae4.tar.gz ejit-dcca95ebeef7ad047b437c7e65bcd2d33784cae4.zip |
add float + double instead of just double
Diffstat (limited to 'tests/bner_f.c')
-rw-r--r-- | tests/bner_f.c | 45 |
1 files changed, 11 insertions, 34 deletions
diff --git a/tests/bner_f.c b/tests/bner_f.c index 3be835a..a48ef2c 100644 --- a/tests/bner_f.c +++ b/tests/bner_f.c @@ -7,8 +7,8 @@ int main(int argc, char *argv[]) (void)argv; bool do_jit = argc > 1; struct ejit_operand operands[2] = { - EJIT_OPERAND_FPR(0, EJIT_TYPE(double)), - EJIT_OPERAND_FPR(1, EJIT_TYPE(double)) + EJIT_OPERAND_FPR(0, EJIT_TYPE(float)), + EJIT_OPERAND_FPR(1, EJIT_TYPE(float)) }; struct ejit_func *f = ejit_create_func(EJIT_TYPE(long), 2, operands); @@ -21,39 +21,16 @@ int main(int argc, char *argv[]) ejit_reti(f, 1); - ejit_select_compile_func(f, 0, 2, EJIT_USE64(double), do_jit); + ejit_select_compile_func(f, 0, 2, EJIT_USE64(float), do_jit); - assert(ejit_run_func_2(f, - EJIT_ARG(0, double), - EJIT_ARG(0, double)) == 0); - - assert(ejit_run_func_2(f, - EJIT_ARG(0, double), - EJIT_ARG(1, double)) == 1); - - assert(ejit_run_func_2(f, - EJIT_ARG(1, double), - EJIT_ARG(0, double)) == 1); - - assert(ejit_run_func_2(f, - EJIT_ARG(-1, double), - EJIT_ARG(0, double)) == 1); - - assert(ejit_run_func_2(f, - EJIT_ARG(0, double), - EJIT_ARG(-1, double)) == 1); - - assert(ejit_run_func_2(f, - EJIT_ARG(1, double), - EJIT_ARG(1, double)) == 0); - - assert(ejit_run_func_2(f, - EJIT_ARG(0, double), - EJIT_ARG(0.0/0.0, double)) == 1); - - assert(ejit_run_func_2(f, - EJIT_ARG(0.0/0.0, double), - EJIT_ARG(0, double)) == 1); + assert(erf2(f, EJIT_ARG(0, float), EJIT_ARG(0, float)) == 0); + assert(erf2(f, EJIT_ARG(0, float), EJIT_ARG(1, float)) == 1); + assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(0, float)) == 1); + assert(erf2(f, EJIT_ARG(-1, float), EJIT_ARG(0, float)) == 1); + assert(erf2(f, EJIT_ARG(0, float), EJIT_ARG(-1, float)) == 1); + assert(erf2(f, EJIT_ARG(1, float), EJIT_ARG(1, float)) == 0); + assert(erf2(f, EJIT_ARG(0, float), EJIT_ARG(0.0/0.0, float)) == 1); + assert(erf2(f, EJIT_ARG(0.0/0.0, float), EJIT_ARG(0, float)) == 1); ejit_destroy_func(f); } |