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

github.com/soumith/cudnn.torch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2015-03-16 00:50:44 +0300
committerSoumith Chintala <soumith@gmail.com>2015-03-16 00:50:44 +0300
commitae4e4144374623cdf91e75d6c55ae4df91c71ff8 (patch)
tree210889303bf742509da5f9961ec8d1a9e7b07465 /README.md
parentbca7790186ef354dc51e46ce6337efd581fa430e (diff)
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b8f9522..8422ea4 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ Modules are API compatible their [`nn`](https://github.com/torch/nn) equivalents
-- All inputs have to be 3D or 4D(batch-mode), except ReLU, Tanh and Sigmoid
cudnn.SpatialConvolution(nInputPlane, nOutputPlane, kW, kH, dW, dH, padW, padH)
cudnn.SpatialMaxPooling(kW, kH, dW, dH, padW, padH)
-cudnn.SpatialAveragePooling(kW, kH, dW, dH) -- compared to nn, they are off by a scaling factor of (1/(kW * kH)).
+cudnn.SpatialAveragePooling(kW, kH, dW, dH)
-- the pointwise functions take an additional optional argument. if inplace=true then they do operations in-place without using any extra memory for themselves
cudnn.ReLU(inplace[=false])