mindspore2022/mindspore/ccsrc/utils/misc.cc

32 lines
1008 B
C++

/**
* Copyright 2019 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 "utils/misc.h"
namespace mindspore {
const int RET_SUCCESS = 0;
const int RET_FAILED = 1;
const int RET_CONTINUE = 2;
const int RET_BREAK = 3;
std::string demangle(const char *name) {
int status = -1;
std::unique_ptr<char, void (*)(void *)> res{abi::__cxa_demangle(name, nullptr, nullptr, &status), std::free};
return (status == 0) ? res.get() : name;
}
} // namespace mindspore