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:
authorTrevor Killeen <killeentm@gmail.com>2017-03-31 19:42:53 +0300
committerTrevor Killeen <killeentm@gmail.com>2017-03-31 19:42:53 +0300
commitb0c98e516f4f474d716c666fed6d00c0fa4653ac (patch)
tree15aa3fc8257f0576e35c268250cce4422b059406
parent8dd911d0156ee62f308bbbd3e6bd6586efc433f1 (diff)
eliminate unnecessary descriptor reset in RNN forward pass
-rw-r--r--RNN.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/RNN.lua b/RNN.lua
index 8b1a965..f22849a 100644
--- a/RNN.lua
+++ b/RNN.lua
@@ -264,7 +264,6 @@ function RNN:updateOutput(input)
if input:size(1) ~= self.seqLength then
self.seqLength = input:size(1)
- resetRNN = true
resetIO = true
end