Skip to content

Commit d2642fc

Browse files
committed
plsr: Try use __builtin_sqrtf
1 parent 4926f6c commit d2642fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/emlearn_plsr/plsr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <string.h>
55

66
// NOTE: make sure we do not use sqrtf() wrapper which uses errno, does not work in native module
7-
#define sqrtf __ieee754_sqrtf
7+
#define sqrtf(x) __builtin_sqrtf(x)
88

99
#include "eml_plsr.h"
1010

0 commit comments

Comments
 (0)