Browse Source

fix lhisi cast be deleted question when fp32 input

tags/v1.3.0
wxl 4 years ago
parent
commit
14b38634ce
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      ge/graph/passes/cast_remove_pass.cc

+ 3
- 1
ge/graph/passes/cast_remove_pass.cc View File

@@ -142,7 +142,9 @@ Status CastRemovePass::DoFuse(const OpsKernelManager &ops_kernel_manager,
in_desc->SetDataType(in_desc_org_dtype);
out_desc->SetDataType(out_desc_org_dtype);
to_be_deleted_cast_index.clear();
GELOGI("Fused Op[%s] check supported fail! Reasons is as follows: %s", un_supported_reasons.c_str());
GELOGI("Fused Op[%s] check supported fail! Reasons is as follows: %s",
op_desc->GetName().c_str(),
un_supported_reasons.c_str());
return SUCCESS;
}



Loading…
Cancel
Save