reid from https://github.com/michuanhaohao/reid-strong-baseline
zhangmeng
2020-01-17 f7c4a3cfd07adede3308f8d9d3d7315427d90a7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef _THMATH_H
#define _THMATH_H
#include <stdlib.h>
#ifdef _MSC_VER
#define _USE_MATH_DEFINES
#endif
#include <math.h>
 
#ifndef M_PIf
#define M_PIf 3.1415926535f
#endif  // M_PIf
 
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 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);
}
 
#endif // _THMATH_H