Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/OAID/Tengine
/ exp10_f32
Function
exp10_f32
executor/operator/arm32/tanh_float.cpp:57–71 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
55
}
56
57
float exp10_f32(float x)
58
{
59
x = 1.0 + x * 0.0009765625f;
60
x *= x;
61
x *= x;
62
x *= x;
63
x *= x;
64
x *= x;
65
x *= x;
66
x *= x;
67
x *= x;
68
x *= x;
69
x *= x;
70
return x;
71
}
72
/*
73
exp(x) = lim(1+x/n)^n // n=10
74
*/
Callers
1
tanh_kernel
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected