!9098 fix the bug that Conv2dBnFoldQuantoneconv ascend .

From: @xiaoyisd
Reviewed-by: @sanjaychan
Signed-off-by: @sanjaychan
This commit is contained in:
mindspore-ci-bot 2020-11-27 19:40:53 +08:00 committed by Gitee
commit 864288e10a
1 changed files with 1 additions and 1 deletions

View File

@ -423,7 +423,7 @@ class Conv2dBnFoldQuantOneConv(Cell):
data_format = 'NCHW'
self.format = Validator.check_string(data_format, ['NCHW', 'NHWC'], 'format', self.cls_name)
self.is_gpu = context.get_context('device_target') == "GPU"
self.is_Ascend = context.get_context('device_target') == "Ascend"
self.is_ascend = context.get_context('device_target') == "Ascend"
self.is_graph_mode = context.get_context("mode") == context.GRAPH_MODE
if context.get_context("enable_ge"):
self.is_ge_backend = True