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 <soumith@fb.com>2015-09-15 21:41:47 +0300
committersoumith <soumith@fb.com>2015-09-15 21:41:47 +0300
commit84d6523daa9a4fa395810ac707ab5979e35f21cb (patch)
treece5f0bad3694077762d5d7e276b3fdcf1acaa658 /SpatialConvolution.lua
parent20d33d5161cf6bc15160cc87e5096c6c3915fe49 (diff)
fastest mode disabled in Spatial conv
Diffstat (limited to 'SpatialConvolution.lua')
-rw-r--r--SpatialConvolution.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/SpatialConvolution.lua b/SpatialConvolution.lua
index 7eec84e..ea8c2e7 100644
--- a/SpatialConvolution.lua
+++ b/SpatialConvolution.lua
@@ -20,7 +20,6 @@ function SpatialConvolution:__init(nInputPlane, nOutputPlane,
self.gradWeight = torch.Tensor(nOutputPlane, nInputPlane/self.groups, kW, kH)
self:reset()
self.iSize = torch.LongStorage(4):fill(0)
- self.fastest_mode = true
end
-- if you change the configuration of the module manually, call this