You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
graphengine/ge/graph/manager/util/debug.cc

79 lines
2.3 KiB

/**
* Copyright 2019-2020 Huawei Technologies Co., Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "graph/manager/util/debug.h"
#include <string>
#include "common/ge/ge_util.h"
#include "framework/common/debug/ge_log.h"
using google::protobuf::Message;
using google::protobuf::io::CodedInputStream;
using google::protobuf::io::FileOutputStream;
namespace ge {
Debug::Debug() = default;
Debug::~Debug() = default;
void Debug::DumpProto(const Message &proto, const char *file) {
std::string file_path = RealPath(file);
int fd = open(file_path.c_str(), O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
if (fd == -1) {
GELOGW("Write %s failed", file_path.c_str());
return;
}
auto output = ge::MakeShared<FileOutputStream>(fd);
if (output == nullptr) {
GELOGW("create output failed.");
if (close(fd) != 0) {
GELOGW("close fd failed.");
}
return;
}
bool ret = google::protobuf::TextFormat::Print(proto, output.get());
if (!ret) {
GELOGW("dump proto failed.");
}
if (close(fd) != 0) {
GELOGW("close fd failed.");
}
}
Status Debug::DumpDevMem(const char *file, const void *addr, int64_t size) {
if (size == 0) {
GELOGI("Dump data failed because the size is 0.");
return SUCCESS;
}
uint8_t *host_addr = nullptr;
rtError_t ret = rtMallocHost(reinterpret_cast<void **>(&host_addr), size);
if (ret != RT_ERROR_NONE) {
GELOGE(FAILED, "Call rt api rtMallocHost failed, ret: 0x%X", ret);
return FAILED;
}
GE_MAKE_GUARD_RTMEM(host_addr);
ret = rtMemcpy(host_addr, size, addr, size, RT_MEMCPY_DEVICE_TO_HOST);
if (ret != RT_ERROR_NONE) {
GELOGE(FAILED, "Call rt api rtMemcpy failed, ret: 0x%X", ret);
return FAILED;
}
GE_CHK_STATUS_RET(MemoryDumper::DumpToFile(file, host_addr, size));
return SUCCESS;
}
} // namespace ge