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:
authorSergey Zagoruyko <zagoruyko2@gmail.com>2016-11-02 12:27:18 +0300
committerGitHub <noreply@github.com>2016-11-02 12:27:18 +0300
commit08be5e561867536f4cc93d28f39a5f11d778e28d (patch)
tree6532ee184a0aebcbc7f2e8e1e42af01599b68492
parent097a4bee165b12ee9e5060549a361a043f4db541 (diff)
parentcd7711f2e6eab37bf0ad16460481843c39348796 (diff)
Merge pull request #284 from szagoruyko/findex-clearState
FindEx clearState
-rw-r--r--SpatialConvolution.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/SpatialConvolution.lua b/SpatialConvolution.lua
index 3a09370..9b24591 100644
--- a/SpatialConvolution.lua
+++ b/SpatialConvolution.lua
@@ -297,6 +297,6 @@ end
function SpatialConvolution:clearState()
self:clearDesc()
- nn.utils.clear(self, '_input', '_gradOutput')
+ nn.utils.clear(self, '_input', '_gradOutput', 'input_slice', 'output_slice')
return nn.Module.clearState(self)
end