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

github.com/torch/cunn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Chanan <gchanan@fb.com>2016-11-29 22:28:25 +0300
committerGregory Chanan <gchanan@fb.com>2016-12-02 02:49:41 +0300
commitbb8e4628fb02bb0b6ae5c5998ef07498322b4e35 (patch)
treef42bb31ba27b025db05b8aa9c646da6a35fb1be1
parent1ddca5f0bc7dbaeba08f9df95364d87b4ed24d77 (diff)
Fix spacing in SpatialDilatedMaxPooling.
-rw-r--r--lib/THCUNN/generic/SpatialDilatedMaxPooling.cu8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/THCUNN/generic/SpatialDilatedMaxPooling.cu b/lib/THCUNN/generic/SpatialDilatedMaxPooling.cu
index cb8ff04..80dbc3e 100644
--- a/lib/THCUNN/generic/SpatialDilatedMaxPooling.cu
+++ b/lib/THCUNN/generic/SpatialDilatedMaxPooling.cu
@@ -5,10 +5,10 @@
#include "../common.h"
static inline void THNN_(SpatialDilatedMaxPooling_shapeCheck)(
- THCState *state,
- THCTensor *input, THCTensor *gradOutput, THCIndexTensor *indices,
- int kH, int kW, int dH, int dW, int padH, int padW,
- int dilationH, int dilationW, bool ceil_mode) {
+ THCState *state,
+ THCTensor *input, THCTensor *gradOutput, THCIndexTensor *indices,
+ int kH, int kW, int dH, int dW, int padH, int padW,
+ int dilationH, int dilationW, bool ceil_mode) {
THArgCheck(kW > 0 && kH > 0, 5,
"kernel size should be greater than zero, but got kH: %d kW: %d", kH, kW);