forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTHTensor.h
38 lines (28 loc) · 814 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
#ifndef TH_TENSOR_INC
#define TH_TENSOR_INC
#include "THStorageFunctions.h"
#include "THTensorApply.h"
#define THTensor_(NAME) TH_CONCAT_4(TH,Real,Tensor_,NAME)
/* basics */
#include "generic/THTensor.h"
#include "THGenerateAllTypes.h"
#include "generic/THTensor.h"
#include "THGenerateHalfType.h"
#include "generic/THTensorCopy.h"
#include "THGenerateAllTypes.h"
#include "generic/THTensorCopy.h"
#include "THGenerateHalfType.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