THCCConv.c 821 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef THC_GENERIC_FILE
#define THC_GENERIC_FILE "generic/THCCConv.c"
#else

void THCCTensor_(convForward)(THCTensor *self, THCTensor *src, THCTensor *weight, THCTensor *basis,
                              THCudaLongTensor *weightIndex) {
}

void THCCTensor_(convBackwardSrc)(THCTensor *self, THCTensor *gradOutput, THCTensor *weight,
                                  THCTensor *basis, THCudaLongTensor *weightIndex) {
}

void THCCTensor_(convBackwardBasis)(THCTensor *self, THCTensor *gradOutput, THCTensor *src,
                                    THCTensor *weight, THCudaLongTensor *weightIndex) {
}

void THCCTensor_(convBackwardWeight)(THCTensor *self, THCTensor *gradOutput, THCTensor *src,
                                     THCTensor *basis, THCudaLongTensor *weightIndex) {
}

#endif  // THC_GENERIC_FILE