forked from torch/torch7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTHTensor.h
41 lines (30 loc) · 851 Bytes
/
THTensor.h
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
38
39
40
41
#ifndef TH_TENSOR_INC
#define TH_TENSOR_INC
#include "THStorage.h"
#include "THTensorApply.h"
#define THTensor TH_CONCAT_3(TH,Real,Tensor)
#define THTensor_(NAME) TH_CONCAT_4(TH,Real,Tensor_,NAME)
#define TH_DESC_BUFF_LEN 64
typedef struct {
char str[TH_DESC_BUFF_LEN];
} THDescBuff;
/* basics */
#include "generic/THTensor.h"
#include "THGenerateAllTypes.h"
#include "generic/THTensorCopy.h"
#include "THGenerateAllTypes.h"
#include "THTensorMacros.h"
/* random numbers */
#include "THRandom.h"
#include "generic/THTensorRandom.h"
#include "THGenerateAllTypes.h"
/* maths */
#include "generic/THTensorMath.h"
#include "THGenerateAllTypes.h"
/* convolutions */
#include "generic/THTensorConv.h"
#include "THGenerateAllTypes.h"
/* lapack support */
#include "generic/THTensorLapack.h"
#include "THGenerateFloatTypes.h"
#endif