MCPcopy Create free account
hub / github.com/OAID/Tengine / exp10_f32

Function exp10_f32

executor/operator/arm32/sigmoid_float.cpp:44–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42const int default_prio = 300;
43
44float exp10_f32(float x)
45{
46 x = 1.0 + x * 0.0009765625f;
47 x *= x;
48 x *= x;
49 x *= x;
50 x *= x;
51 x *= x;
52 x *= x;
53 x *= x;
54 x *= x;
55 x *= x;
56 x *= x;
57 return x;
58}
59
60inline float32x4_t vexpq10_f32(float32x4_t x)
61{

Callers 1

RunMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected