aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/torch/torch7/lib/TH/THMath.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-05-23 18:14:15 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2018-05-23 18:14:15 +0100
commit714eb56e1760fdfb26afccde92664d3a2f1e8435 (patch)
tree84d1399acbb92f852b4bd64f9ea5412680b0c6ab /contrib/torch/torch7/lib/TH/THMath.h
parent220a51ff68013dd668a45b78c60a7b8bfc10f074 (diff)
downloadrspamd-714eb56e1760fdfb26afccde92664d3a2f1e8435.tar.gz
rspamd-714eb56e1760fdfb26afccde92664d3a2f1e8435.zip
[Minor] Move lua contrib libraries to lua- prefix
Diffstat (limited to 'contrib/torch/torch7/lib/TH/THMath.h')
-rw-r--r--contrib/torch/torch7/lib/TH/THMath.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/contrib/torch/torch7/lib/TH/THMath.h b/contrib/torch/torch7/lib/TH/THMath.h
deleted file mode 100644
index 004e4fe45..000000000
--- a/contrib/torch/torch7/lib/TH/THMath.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef _THMATH_H
-#define _THMATH_H
-
-static inline double TH_sigmoid(double value) {
- return 1.0 / (1.0 + exp(-value));
-}
-
-static inline double TH_frac(double x) {
- return x - trunc(x);
-}
-
-static inline double TH_rsqrt(double x) {
- return 1.0 / sqrt(x);
-}
-
-static inline double TH_lerp(double a, double b, double weight) {
- return a + weight * (b-a);
-}
-
-static inline float TH_sigmoidf(float value) {
- return 1.0f / (1.0f + expf(-value));
-}
-
-static inline float TH_fracf(float x) {
- return x - truncf(x);
-}
-
-static inline float TH_rsqrtf(float x) {
- return 1.0f / sqrtf(x);
-}
-
-static inline float TH_lerpf(float a, float b, float weight) {
- return a + weight * (b-a);
-}
-
-#endif // _THMATH_H