提交 5dbfdec6 authored 作者: Frederic's avatar Frederic

GPU conv opt refactoring to simplify the code.

Now only the legacy opt move to the GPU. Then we can apply opt in order to get the behavior we want.
上级 cabf5754
...@@ -1143,7 +1143,7 @@ def _gpu_conv_to_fftconv(node): ...@@ -1143,7 +1143,7 @@ def _gpu_conv_to_fftconv(node):
return rval return rval
@local_optimizer([gpu_from_host, conv.ConvOp, GpuConv]) @local_optimizer([GpuConv])
def local_conv_fft_valid(node): def local_conv_fft_valid(node):
if isinstance(node.op, GpuConv): if isinstance(node.op, GpuConv):
if (node.op.border_mode == 'valid' and if (node.op.border_mode == 'valid' and
...@@ -1152,25 +1152,8 @@ def local_conv_fft_valid(node): ...@@ -1152,25 +1152,8 @@ def local_conv_fft_valid(node):
return [_gpu_conv_to_fftconv(node)] return [_gpu_conv_to_fftconv(node)]
return False return False
repl = local_gpu_conv_legacy.transform(node)
if repl:
if isinstance(node.op, GpuFromHost):
gpu_conv = repl[0].owner
else:
gpu_conv = repl[0].owner.inputs[0].owner
assert isinstance(gpu_conv.op, GpuConv)
if (gpu_conv.op.border_mode == 'valid' and
gpu_conv.op.subsample == (1, 1) and
gpu_conv.op.fft_opt):
ret = _gpu_conv_to_fftconv(gpu_conv)
if ret:
if isinstance(node.op, GpuFromHost):
return [ret]
else:
return [host_from_gpu(ret)]
@local_optimizer([gpu_from_host, conv.ConvOp, GpuConv]) @local_optimizer([GpuConv])
def local_conv_fft_full(node): def local_conv_fft_full(node):
if isinstance(node.op, GpuConv): if isinstance(node.op, GpuConv):
if (node.op.border_mode == 'full' and if (node.op.border_mode == 'full' and
...@@ -1179,47 +1162,21 @@ def local_conv_fft_full(node): ...@@ -1179,47 +1162,21 @@ def local_conv_fft_full(node):
return [_gpu_conv_to_fftconv(node)] return [_gpu_conv_to_fftconv(node)]
return return
repl = local_gpu_conv_legacy.transform(node)
if repl:
if isinstance(node.op, GpuFromHost):
gpu_conv = repl[0].owner
else:
gpu_conv = repl[0].owner.inputs[0].owner
assert isinstance(gpu_conv.op, GpuConv)
if (gpu_conv.op.border_mode == 'full' and
gpu_conv.op.subsample == (1, 1) and
gpu_conv.op.fft_opt):
ret = _gpu_conv_to_fftconv(gpu_conv)
if ret:
if isinstance(node.op, GpuFromHost):
return [ret]
else:
return [host_from_gpu(ret)]
# Needs to be registered before local_gpu_conv_legacy. Otherwise, it # Needs to be registered before local_gpu_conv_legacy. Otherwise, it
# will have priority over this optimization. We want, if cudnn is # will have priority over this optimization. We want, if cudnn is
# available and the GPU supports it, to use it. Otherwise, the gemm # available and the GPU supports it, to use it. Otherwise, the gemm
# version should be used. If the users want the legacy convolution, # version should be used. If the users want the legacy convolution,
# they should use the Theano flag to disable the dnn and/or gemm version. # they should use the Theano flag to disable the dnn and/or gemm version.
@local_optimizer([gpu_from_host, conv.ConvOp]) @local_optimizer([GpuConv])
def local_gpu_conv(node): def local_gpu_conv(node):
""" """
If cudnn is available, use it. Otherwise, use the gemm version. If cudnn is available, use it. Otherwise, use the gemm version.
""" """
if theano.sandbox.cuda.dnn.dnn_available(): if (isinstance(node.op, GpuConv) and
repl = local_gpu_conv_legacy.transform(node) theano.sandbox.cuda.dnn.dnn_available()):
if repl: return theano.sandbox.cuda.dnn.local_conv_dnn.transform(node)
if isinstance(node.op, GpuFromHost):
gpu_conv = repl[0].owner
else:
gpu_conv = repl[0].owner.inputs[0].owner
assert isinstance(gpu_conv.op, GpuConv)
ret = theano.sandbox.cuda.dnn.local_conv_dnn.transform(gpu_conv)
if ret:
if isinstance(node.op, GpuFromHost):
return ret
else:
return [host_from_gpu(ret[0])]
# If dnn isn't avail, the local_gpu_conv_legacy wil introduce the # If dnn isn't avail, the local_gpu_conv_legacy wil introduce the
# legacy opt. Then the local_conv_gemm will convert it to gemm # legacy opt. Then the local_conv_gemm will convert it to gemm
# opt. # opt.
...@@ -1382,20 +1339,20 @@ def local_conv_gemm(node): ...@@ -1382,20 +1339,20 @@ def local_conv_gemm(node):
gpu_contiguous(kern), gpu_contiguous(img))] gpu_contiguous(kern), gpu_contiguous(img))]
# fft optimization not enabled by default. Need to be registered # Legacy opt first, as this is the only that move to the GPU.
# before the default convolution optimization. If the user ask fft, as # Then fft, as disabled dy default. So if use enable it, it have prio
# this isn't the default, it should have higher prio then the default. # Then default, use dnn if avail
# Then default, use gemm if dnn or fft didn't worked.
# Normally, gemm should catch all case, so the legacy should never run.
conv_groupopt.register('local_gpu_conv_legacy', local_gpu_conv_legacy, 0,
'fast_compile', 'fast_run')
conv_groupopt.register("conv_fft_valid", local_conv_fft_valid, 1) conv_groupopt.register("conv_fft_valid", local_conv_fft_valid, 1)
conv_groupopt.register("conv_fft_full", local_conv_fft_full, 1) conv_groupopt.register("conv_fft_full", local_conv_fft_full, 1)
# default gpu conv optimization # Use dnn if avail, so have the dnn tag to be able to disable it.
conv_groupopt.register('local_gpu_conv', local_gpu_conv, 10, conv_groupopt.register('local_gpu_conv', local_gpu_conv, 10,
'fast_compile', 'fast_run', "dnn") 'fast_compile', 'fast_run', 'dnn')
# Legacy convolution, after default
conv_groupopt.register('local_gpu_conv_legacy', local_gpu_conv_legacy, 11,
'fast_compile', 'fast_run', "dnn")
# conv gemm after legacy, as it convert legacy to gemm version
conv_groupopt.register('local_conv_gemm', local_conv_gemm, 12, conv_groupopt.register('local_conv_gemm', local_conv_gemm, 12,
'fast_compile', 'fast_run', "dnn") 'fast_compile', 'fast_run')
@local_optimizer([Conv3D]) @local_optimizer([Conv3D])
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论