560a4a56a72432bf7e90b7ca350b5768d3a4c168,theano/gpuarray/tests/test_dnn.py,,test_pooling_opt_arbitrary_dimensions,#,462
Before Change
utt.seed_rng()
// "average_exc_pad" is disabled for versions < 4004
if dnn.version(raises=False) < 4004:
modes = ("max", "average_inc_pad")
else:
modes = ("max", "average_inc_pad", "average_exc_pad")
for n_non_pool_dims in (0, 1, 2, 3):
for ws in ((2, 2), (3, 3, 3)):
// create input shape: non-pooling dimensions
// followed by 2 or 3 pooling dimensions
After Change
raise SkipTest(dnn.dnn_available.msg)
utt.seed_rng()
modes = get_dnn_pool_modes()
for n_non_pool_dims in (0, 1, 2, 3):
for ws in ((2, 2), (3, 3, 3)):
// create input shape: non-pooling dimensions
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 9
Instances
Project Name: Theano/Theano
Commit Name: 560a4a56a72432bf7e90b7ca350b5768d3a4c168
Time: 2017-05-29
Author: stevenbocco@gmail.com
File Name: theano/gpuarray/tests/test_dnn.py
Class Name:
Method Name: test_pooling_opt_arbitrary_dimensions
Project Name: Theano/Theano
Commit Name: 560a4a56a72432bf7e90b7ca350b5768d3a4c168
Time: 2017-05-29
Author: stevenbocco@gmail.com
File Name: theano/gpuarray/tests/test_dnn.py
Class Name:
Method Name: test_pooling
Project Name: Theano/Theano
Commit Name: 560a4a56a72432bf7e90b7ca350b5768d3a4c168
Time: 2017-05-29
Author: stevenbocco@gmail.com
File Name: theano/gpuarray/tests/test_dnn.py
Class Name:
Method Name: test_pooling3d