From 15d061f85281a60ef0e2e558702ebd6cf454c7ba Mon Sep 17 00:00:00 2001
From: guohongzilong <2713219276@qq.com>
Date: Thu, 2 Apr 2020 12:05:28 +0800
Subject: [PATCH] pass str to ge.exec.EnableDump

---
 mindspore/ccsrc/utils/context/ms_context.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mindspore/ccsrc/utils/context/ms_context.cc b/mindspore/ccsrc/utils/context/ms_context.cc
index bf05af98582..5de28eac983 100644
--- a/mindspore/ccsrc/utils/context/ms_context.cc
+++ b/mindspore/ccsrc/utils/context/ms_context.cc
@@ -274,7 +274,7 @@ void MsContext::SetHcclOptions(std::map<std::string, std::string>* ge_options) c
 void MsContext::GetGeOptions(std::map<std::string, std::string>* ge_options) const {
 #ifdef ENABLE_GE
   (*ge_options)["device_id"] = "0";
-  (*ge_options)["ge.exec.enableDump"] = enable_dump_;
+  (*ge_options)["ge.exec.enableDump"] = std::to_string(enable_dump_);
   (*ge_options)["ge.exec.dumpPath"] = save_dump_path_;
   // only not supported in ge
   auto tbe_plugin_path = common::GetEnv("ME_TBE_PLUGIN_PATH");