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

80 lines
2.4 KiB

5 years ago
/**
* 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>
5 years ago
#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);
4 years ago
int fd = mmOpen2(file_path.c_str(), M_WRONLY | M_CREAT | O_TRUNC, M_IRUSR | M_IWUSR | M_UMASK_GRPREAD |
M_UMASK_OTHREAD);
5 years ago
if (fd == -1) {
GELOGW("Write %s failed", file_path.c_str());
5 years ago
return;
}
auto output = ge::MakeShared<FileOutputStream>(fd);
if (output == nullptr) {
GELOGW("create output failed.");
if (mmClose(fd) != 0) {
5 years ago
GELOGW("close fd failed.");
}
return;
}
bool ret = google::protobuf::TextFormat::Print(proto, output.get());
if (!ret) {
GELOGW("dump proto failed.");
}
if (mmClose(fd) != 0) {
5 years ago
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;
}
5 years ago
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);
5 years ago
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