/third_party/mindspore/mindspore/ccsrc/debug/data_dump/ |
D | e2e_dump.cc | 47 … const TypeId &host_type, const TypeId &device_type, bool trans_flag, size_t slot, in DumpGPUMemToFile() argument 52 …auto ret = debugger->DumpTensorToFile(original_kernel_name, trans_flag, file_path, format, int_sha… in DumpGPUMemToFile() 55 MS_LOG(ERROR) << "DumpTensorToFile Failed: flag:" << trans_flag << ", path:" << file_path in DumpGPUMemToFile() 68 bool trans_flag = dump_json_parser.trans_flag(); in DumpOutput() local 77 DumpOutputImpl(node, trans_flag, dump_path, &kernel_name, debugger); in DumpOutput() 86 bool trans_flag = dump_json_parser.trans_flag(); in DumpOutputSingleNode() local 93 DumpOutputImpl(node, trans_flag, dump_path, &kernel_name, debugger); in DumpOutputSingleNode() 96 void E2eDump::DumpOutputImpl(const CNodePtr &node, bool trans_flag, const std::string &dump_path, in DumpOutputImpl() argument 108 GetDumpIntShape(node, j, NOT_NULL(&int_shapes), trans_flag); in DumpOutputImpl() 120 …UMemToFile(file_path, GetKernelNodeName(node), *addr, int_shapes, type, device_type, trans_flag, j, in DumpOutputImpl() [all …]
|
D | e2e_dump.h | 52 static void DumpInputImpl(const CNodePtr &node, bool trans_flag, const std::string &dump_path, 55 static void DumpOutputImpl(const CNodePtr &node, bool trans_flag, const std::string &dump_path, 74 … const TypeId &host_type, const TypeId &device_type, bool trans_flag, size_t slot, 78 … bool trans_flag, std::map<std::string, size_t> *const_map, const Debugger *debugger);
|
D | dump_utils.cc | 114 …ntShape(const AnfNodePtr &node, size_t index, NotNull<ShapeVector *> int_shapes, bool trans_flag) { in GetDumpIntShape() argument 115 if (trans_flag) { in GetDumpIntShape() 125 const TypeId &type, bool trans_flag) { in DumpMemToFile() argument 127 auto ret = addr.DumpMemToFile(file_path, format, int_shapes, type, trans_flag); in DumpMemToFile() 129 …MS_LOG(ERROR) << "DumpMemToFile Failed: flag:" << trans_flag << ", path:" << file_path << ", host_… in DumpMemToFile()
|
D | dump_utils.h | 36 …(const AnfNodePtr &node, size_t index, NotNull<ShapeVector *> int_shapes, bool trans_flag = false); 39 const TypeId &type, bool trans_flag = false);
|
D | dump_json_parser.h | 55 bool trans_flag() const { return trans_flag_; } in trans_flag() function
|
D | dump_json_parser.cc | 286 auto trans_flag = CheckJsonKeyExist(*e2e_dump_setting, kTransFlag); in ParseE2eDumpSetting() local 292 trans_flag_ = ParseEnable(*trans_flag); in ParseE2eDumpSetting()
|
/third_party/mindspore/mindspore/ccsrc/runtime/device/cpu/ |
D | cpu_device_address.h | 43 TypeId host_type, bool trans_flag) const override;
|
/third_party/mindspore/mindspore/ccsrc/debug/ |
D | tensor_load.h | 197 …bool DumpTensorToFile(const std::string &tensor_name, bool trans_flag, const std::string &filepath, in DumpTensorToFile() argument 205 if (trans_flag) { in DumpTensorToFile()
|
D | debug_services.h | 406 …bool DumpTensorToFile(const std::string &tensor_name, bool trans_flag, const std::string &filepath,
|
D | debug_services.cc | 1255 bool DebugServices::DumpTensorToFile(const std::string &tensor_name, bool trans_flag, const std::st… in DumpTensorToFile() argument 1259 …return tensor_loader_->DumpTensorToFile(tensor_name, trans_flag, filepath, host_fmt, host_shape, h… in DumpTensorToFile()
|
/third_party/mindspore/mindspore/ccsrc/runtime/device/ascend/ |
D | ascend_device_address.h | 55 TypeId host_type, bool trans_flag) const override;
|
D | ascend_device_address.cc | 503 … const ShapeVector &host_shape, TypeId host_type, bool trans_flag) const { in DumpMemToFile() 509 if (trans_flag) { in DumpMemToFile()
|
/third_party/mindspore/mindspore/ccsrc/runtime/device/ |
D | device_address.h | 88 TypeId host_type, bool trans_flag) const { in DumpMemToFile() argument
|
/third_party/mindspore/mindspore/ccsrc/debug/debugger/ |
D | debugger.h | 105 …bool DumpTensorToFile(const std::string &tensor_name, bool trans_flag, const std::string &filepath,
|
D | debugger.cc | 1153 bool Debugger::DumpTensorToFile(const std::string &tensor_name, bool trans_flag, const std::string … in DumpTensorToFile() argument 1156 …return debug_services_.get()->DumpTensorToFile(tensor_name, trans_flag, filepath, host_fmt, host_s… in DumpTensorToFile()
|