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

github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIvo Danihelka <ivo@danihelka.net>2012-10-12 14:16:00 +0400
committerIvo Danihelka <ivo@danihelka.net>2012-10-12 14:16:00 +0400
commitffa6395c00d5cf66467733bd0b19364a503704be (patch)
tree8a853f6faf8097ae62a075fd83125bd84ad2507f /test
parent693ef8f04e53c97a6a7c6dcb73db7865f51b0a65 (diff)
Made the private functions to be local.
Diffstat (limited to 'test')
-rw-r--r--test/test.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.lua b/test/test.lua
index 7b20bc7..3097431 100644
--- a/test/test.lua
+++ b/test/test.lua
@@ -795,7 +795,7 @@ function nntest.SpatialConvolutionMap()
mytester:asserteq(0, berr, torch.typename(module) .. ' - i/o backward err ')
end
-function batchcompare(smod, sin, plist)
+local function batchcompare(smod, sin, plist)
local bs = torch.LongStorage(sin:size():size()+1)
bs[1] = 1
for i=1,sin:size():size() do bs[i+1] = sin:size()[i] end