Home
last modified time | relevance | path

Searched refs:DataDumper (Results 1 – 6 of 6) sorted by relevance

/third_party/mindspore/tests/ut/cpp/stub/tasksink/
Dtask_sink_stub.cc32 void DataDumper::LoadDumpInfo() {} in LoadDumpInfo()
33 void DataDumper::UnloadDumpInfo() {} in UnloadDumpInfo()
34 void DataDumper::OpDebugRegister() {} in OpDebugRegister()
35 void DataDumper::OpDebugUnregister() {} in OpDebugUnregister()
36 DataDumper::~DataDumper() {} in ~DataDumper()
/third_party/mindspore/mindspore/ccsrc/runtime/device/ascend/dump/
Ddata_dumper.cc65 DataDumper::~DataDumper() { in ~DataDumper()
74 void DataDumper::GetNeedDumpKernelList(NotNull<std::map<std::string, CNodePtr> *> kernel_map) const… in GetNeedDumpKernelList()
104 void DataDumper::LoadDumpInfo() { in LoadDumpInfo()
133 void DataDumper::SetOpMappingInfo(NotNull<aicpu::dump::OpMappingInfo *> dump_info) const { in SetOpMappingInfo()
205 bool DataDumper::KernelNeedDump(const CNodePtr &kernel) const { in KernelNeedDump()
216 void DataDumper::UnloadDumpInfo() { in UnloadDumpInfo()
243 void DataDumper::ReleaseDevMem(void **ptr) const noexcept { in ReleaseDevMem()
256 void DataDumper::ConstructDumpTask(NotNull<const CNodePtr &> kernel, NotNull<aicpu::dump::Task *> d… in ConstructDumpTask()
282 void DataDumper::SetOpDebugMappingInfo(const NotNull<aicpu::dump::OpMappingInfo *> dump_info) const… in SetOpDebugMappingInfo()
315 void DataDumper::OpDebugRegister() { in OpDebugRegister()
[all …]
Ddata_dumper.h39 class DataDumper {
41DataDumper(const session::KernelGraph *kernel_graph, NotNull<std::function<void *()>> model_handle) in DataDumper() function
52 ~DataDumper();
/third_party/mindspore/mindspore/ccsrc/runtime/device/
Ddevice_address.h42 class DataDumper; variable
128 friend class mindspore::device::ascend::DataDumper;
/third_party/mindspore/mindspore/ccsrc/runtime/device/ascend/
Dascend_kernel_runtime.h116 unordered_map<GraphId, std::shared_ptr<DataDumper>> graph_data_dumper_;
Dascend_kernel_runtime.cc570 auto data_dumper = std::make_shared<DataDumper>(&graph, model_handle); in DistributeDebugTask()