Skip to content

Commit b7b9901

Browse files
committed
plsr: Try use __builtin_sqrtf
1 parent 49b01b3 commit b7b9901

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)