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
path: root/test
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2014-09-11 03:19:50 +0400
committerSoumith Chintala <soumith@gmail.com>2014-09-21 03:51:16 +0400
commit1e22e3c4b4d588beadfafdeb1a209aed3f5b3850 (patch)
treeb7da384322ad67cfb6d987fa2b07a273e3a319ab /test
parentecd1ca60adb49dab5eaa317dbb17bf80c540c8ef (diff)
removing file
Diffstat (limited to 'test')
-rw-r--r--test/bug.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/bug.lua b/test/bug.lua
deleted file mode 100644
index 456c261..0000000
--- a/test/bug.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'cutorch'
-require 'cudnn'
-
-local gconv = cudnn.SpatialConvolution(3,16,5,5):cuda()
-local inp = torch.randn(128, 3, 100, 100):cuda()
-local out = gconv:forward(inp)
--- runs ok
-for i=1,100 do
- out = gconv:forward(inp)
-end
-print('ok!')
-
-print('problemo!')
-inp = torch.randn(128, 3, 200, 200):cuda() -- change input shape
-out = gconv:forward(inp)