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>2017-03-05 22:05:16 +0300
committerGitHub <noreply@github.com>2017-03-05 22:05:16 +0300
commit9c2b867e38a2c75ae610aa312848a3cdb35ae033 (patch)
treef98025dc4438e3b2f515b0869d123f49b84383b8
parent22241be0a077a91fb7b8fac904015859924f1815 (diff)
parent7b37321f181731f08c73023e43e5b768816b1877 (diff)
Merge pull request #347 from sidharthms/master
Fix TemporalConvolution clearDesc
-rw-r--r--TemporalConvolution.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/TemporalConvolution.lua b/TemporalConvolution.lua
index 22400ce..791ba93 100644
--- a/TemporalConvolution.lua
+++ b/TemporalConvolution.lua
@@ -117,7 +117,7 @@ end
function TemporalConvolution:clearDesc()
self.buffer = nil
self._output = nil
- self.oSize = nil
+ cudnn.SpatialConvolution.clearDesc(self)
end
function TemporalConvolution:write(f)