Skip to content

Commit

Permalink
Merge pull request #4537 from LuoYuanke/dilated_conv
Browse files Browse the repository at this point in the history
Support dilated convolution on ideep backend
  • Loading branch information
kmaehashi committed Mar 29, 2018
2 parents 75dda19 + bebe081 commit 1d93cc4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions chainer/functions/connection/deconvolution_2d.py
Expand Up @@ -122,8 +122,7 @@ def forward_cpu(self, inputs):
# Grouped convolution implementation
return self._forward_grouped_convolution(x, W, b)

elif ((self.dy == 1 and self.dx == 1)
and intel64.should_use_ideep('>=auto')
elif (intel64.should_use_ideep('>=auto')
and intel64.inputs_all_ready(inputs)):
# iDeep implementation
self._use_ideep = True
Expand Down

0 comments on commit 1d93cc4

Please sign in to comment.