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 THC_GENERIC_FILE
#error "You must define THC_GENERIC_FILE before including THGenerateAllTypes.h"
#endif
 
#define THCGenerateAllTypes
 
#define THCTypeIdxByte   1
#define THCTypeIdxChar   2
#define THCTypeIdxShort  3
#define THCTypeIdxInt    4
#define THCTypeIdxLong   5
#define THCTypeIdxFloat  6
#define THCTypeIdxDouble 7
#define THCTypeIdxHalf   8
#define THCTypeIdx_(T) TH_CONCAT_2(THCTypeIdx,T)
 
#include <THC/THCGenerateByteType.h>
#include <THC/THCGenerateCharType.h>
#include <THC/THCGenerateShortType.h>
#include <THC/THCGenerateIntType.h>
#include <THC/THCGenerateLongType.h>
#include <THC/THCGenerateHalfType.h>
#include <THC/THCGenerateFloatType.h>
#include <THC/THCGenerateDoubleType.h>
 
#undef THCTypeIdxByte
#undef THCTypeIdxChar
#undef THCTypeIdxShort
#undef THCTypeIdxInt
#undef THCTypeIdxLong
#undef THCTypeIdxFloat
#undef THCTypeIdxDouble
#undef THCTypeIdxHalf
#undef THCTypeIdx_
 
#undef THCGenerateAllTypes
#undef THC_GENERIC_FILE