forked from mindspore-Ecosystem/mindspore
!9098 fix the bug that Conv2dBnFoldQuantoneconv ascend .
From: @xiaoyisd Reviewed-by: @sanjaychan Signed-off-by: @sanjaychan
This commit is contained in:
commit
864288e10a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue