Welcome to mirror list, hosted at ThFree Co, Russian Federation.

THCStorage.cu « THC « lib - github.com/torch/cutorch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a23794c21233fec6ba48366a5b150cffdb4ef7b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "THCStorage.h"

#include <thrust/device_ptr.h>
#include <thrust/fill.h>
#if CUDA_VERSION >= 7000
#include <thrust/system/cuda/execution_policy.h>
#endif

#include "THCHalf.h"

#include "generic/THCStorage.cu"
#include "THCGenerateAllTypes.h"