From 45aca4e9bb64d6836b778159a912adac89f33df3 Mon Sep 17 00:00:00 2001 From: dangqingqing Date: Wed, 6 Dec 2017 14:26:11 +0800 Subject: [PATCH] Change the type of conv2d in Python API. --- python/paddle/v2/fluid/layers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/paddle/v2/fluid/layers.py b/python/paddle/v2/fluid/layers.py index 98a04ea9c25..7b31cabddfb 100644 --- a/python/paddle/v2/fluid/layers.py +++ b/python/paddle/v2/fluid/layers.py @@ -764,7 +764,7 @@ def conv2d(input, pre_bias = helper.create_tmp_variable(dtype) helper.append_op( - type='conv2d', + type='conv2d_cudnn', inputs={ 'Input': input, 'Filter': filter, -- GitLab