9cc12aa619dfd814a69777459eff8c3aa8ad776f,tests/chainer_tests/functions_tests/connection_tests/test_deconvolution_nd.py,TestDeconvolutionND,check_forward_consistency,#TestDeconvolutionND#Any#,100
Before Change
x_gpu = chainer.Variable(cuda.to_gpu(self.x))
W_gpu = chainer.Variable(cuda.to_gpu(self.W))
b_gpu = None if self.nobias else chainer.Variable(cuda.to_gpu(self.b))
with chainer.using_config("use_cudnn", use_cudnn):
with chainer.using_config("autotune", self.autotune):
y_gpu = F.deconvolution_nd(
x_gpu, W_gpu, b_gpu, stride=self.stride, pad=self.pad,
After Change
x, W = inputs
b = None
else:
x, W, b = inputs
x_cpu = chainer.Variable(x)
W_cpu = chainer.Variable(W)
b_cpu = None if self.nobias else chainer.Variable(b)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 2
Instances
Project Name: chainer/chainer
Commit Name: 9cc12aa619dfd814a69777459eff8c3aa8ad776f
Time: 2019-08-04
Author: ecastill@preferred.jp
File Name: tests/chainer_tests/functions_tests/connection_tests/test_deconvolution_nd.py
Class Name: TestDeconvolutionND
Method Name: check_forward_consistency
Project Name: chainer/chainerrl
Commit Name: bb400593d5aeccdccf5f827c1e30b0ea10774da7
Time: 2019-05-06
Author: muupan@gmail.com
File Name: chainerrl/agents/categorical_double_dqn.py
Class Name: CategoricalDoubleDQN
Method Name: _compute_target_values
Project Name: chainer/chainercv
Commit Name: 91ea07fc28e27d33cf14ed458ba6afa42070cb65
Time: 2018-12-05
Author: yuyuniitani@gmail.com
File Name: examples/pspnet/train_multi.py
Class Name:
Method Name: main