├── .gitignore ├── README.txt ├── c ├── Makefile └── aa.cc ├── eblearn ├── Makefile ├── convnet.cc ├── convnet256.cc ├── convnet96.cc ├── mlp.cc ├── mnist_example.cc └── run.sh ├── numpy ├── aa_numpy.py ├── logreg.py ├── mlp.py ├── rbm.py └── run.sh ├── reports ├── ascii.py ├── build_csv.py ├── show_csv.py └── task_pdfs.py ├── theano ├── aa.py ├── control.py ├── convnet.py ├── mlp.py ├── rbm.py └── run.sh ├── torch5 ├── MiniBatchGradient.lua ├── mlp.lua ├── mlp_minibatch.lua └── run.sh └── torch7 ├── .gitignore ├── README.txt ├── SpatialConvolutionFast.lua ├── add_to_db.py ├── benchmark.lua ├── cudahacks.lua └── run.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/README.txt -------------------------------------------------------------------------------- /c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/c/Makefile -------------------------------------------------------------------------------- /c/aa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/c/aa.cc -------------------------------------------------------------------------------- /eblearn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/eblearn/Makefile -------------------------------------------------------------------------------- /eblearn/convnet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/eblearn/convnet.cc -------------------------------------------------------------------------------- /eblearn/convnet256.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/eblearn/convnet256.cc -------------------------------------------------------------------------------- /eblearn/convnet96.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/eblearn/convnet96.cc -------------------------------------------------------------------------------- /eblearn/mlp.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eblearn/mnist_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/eblearn/mnist_example.cc -------------------------------------------------------------------------------- /eblearn/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/eblearn/run.sh -------------------------------------------------------------------------------- /numpy/aa_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/numpy/aa_numpy.py -------------------------------------------------------------------------------- /numpy/logreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/numpy/logreg.py -------------------------------------------------------------------------------- /numpy/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/numpy/mlp.py -------------------------------------------------------------------------------- /numpy/rbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/numpy/rbm.py -------------------------------------------------------------------------------- /numpy/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/numpy/run.sh -------------------------------------------------------------------------------- /reports/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/reports/ascii.py -------------------------------------------------------------------------------- /reports/build_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/reports/build_csv.py -------------------------------------------------------------------------------- /reports/show_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/reports/show_csv.py -------------------------------------------------------------------------------- /reports/task_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/reports/task_pdfs.py -------------------------------------------------------------------------------- /theano/aa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/theano/aa.py -------------------------------------------------------------------------------- /theano/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/theano/control.py -------------------------------------------------------------------------------- /theano/convnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/theano/convnet.py -------------------------------------------------------------------------------- /theano/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/theano/mlp.py -------------------------------------------------------------------------------- /theano/rbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/theano/rbm.py -------------------------------------------------------------------------------- /theano/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/theano/run.sh -------------------------------------------------------------------------------- /torch5/MiniBatchGradient.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch5/MiniBatchGradient.lua -------------------------------------------------------------------------------- /torch5/mlp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch5/mlp.lua -------------------------------------------------------------------------------- /torch5/mlp_minibatch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch5/mlp_minibatch.lua -------------------------------------------------------------------------------- /torch5/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch5/run.sh -------------------------------------------------------------------------------- /torch7/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | run.sh.results* 3 | lib 4 | -------------------------------------------------------------------------------- /torch7/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch7/README.txt -------------------------------------------------------------------------------- /torch7/SpatialConvolutionFast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch7/SpatialConvolutionFast.lua -------------------------------------------------------------------------------- /torch7/add_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch7/add_to_db.py -------------------------------------------------------------------------------- /torch7/benchmark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch7/benchmark.lua -------------------------------------------------------------------------------- /torch7/cudahacks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch7/cudahacks.lua -------------------------------------------------------------------------------- /torch7/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaberg/DeepLearningBenchmarks/HEAD/torch7/run.sh --------------------------------------------------------------------------------