aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/psimd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/psimd.h b/include/psimd.h
index 74cb3a8..405eb54 100644
--- a/include/psimd.h
+++ b/include/psimd.h
@@ -674,6 +674,10 @@
#endif
}
+ PSIMD_INTRINSIC psimd_f32 psimd_div_f32(psimd_f32 a, psimd_f32 b) {
+ return a / b;
+ }
+
/* Vector and */
PSIMD_INTRINSIC psimd_f32 psimd_andmask_f32(psimd_s32 mask, psimd_f32 v) {
return (psimd_f32) (mask & (psimd_s32) v);