提交 7797e55f 编写于 作者: C chenweihang

use paddle::platform::demangle

上级 21d5b942
......@@ -115,8 +115,6 @@ cc_test(cow_ptr_tests SRCS details/cow_ptr_test.cc)
# cc_test(channel_test SRCS channel_test.cc)
cc_test(tuple_test SRCS tuple_test.cc )
cc_test(attribute_type_test SRCS attribute_type_test.cc)
# disable test temporarily.
# TODO https://github.com/PaddlePaddle/Paddle/issues/11971
# cc_test(concurrency_test SRCS concurrency_test.cc DEPS go_op channel_close_op channel_create_op
......
......@@ -20,7 +20,6 @@ limitations under the License. */
#include <unordered_set>
#include <vector>
#include "paddle/fluid/framework/attribute_type.h"
#include "paddle/fluid/framework/framework.pb.h"
#include "paddle/fluid/framework/type_defs.h"
#include "paddle/fluid/platform/enforce.h"
......@@ -129,8 +128,8 @@ struct ExtractAttribute {
attr_value = &boost::get<T>(attr);
} catch (boost::bad_get& bad_get) {
PADDLE_THROW("Cannot get attribute %s by type %s, its type is %s",
attr_name_, paddle::framework::demangle(typeid(T).name()),
paddle::framework::demangle(attr.type().name()));
attr_name_, paddle::platform::demangle(typeid(T).name()),
paddle::platform::demangle(attr.type().name()));
}
return attr_value;
}
......@@ -162,7 +161,7 @@ struct ExtractAttribute<bool> {
attr_value = &boost::get<bool>(attr);
} catch (boost::bad_get& bad_get) {
PADDLE_THROW("Cannot get attribute %s by type bool, its type is %s",
attr_name_, paddle::framework::demangle(attr.type().name()));
attr_name_, paddle::platform::demangle(attr.type().name()));
}
return attr_value;
}
......@@ -188,7 +187,7 @@ struct ExtractAttribute<int64_t> {
attr_value = &boost::get<int64_t>(attr);
} catch (boost::bad_get& bad_get) {
PADDLE_THROW("Cannot get attribute %s by type int64_t, its type is %s",
attr_name_, paddle::framework::demangle(attr.type().name()));
attr_name_, paddle::platform::demangle(attr.type().name()));
}
return attr_value;
}
......
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
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. */
#pragma once
#include <string>
// __has_include is currently supported by GCC and Clang. However GCC 4.9 may
// have issues and
// returns 1 for 'defined( __has_include )', while '__has_include' is actually
// not supported:
#if defined(__has_include) && (!defined(BOOST_GCC) || (__GNUC__ + 0) >= 5)
#if __has_include(<cxxabi.h>)
#define PADDLE_FRAMEWORK_HAS_CXXABI_H
#endif
#elif defined(__GLIBCXX__) || defined(__GLIBCPP__)
#define PADDLE_FRAMEWORK_HAS_CXXABI_H
#endif
#if defined(PADDLE_FRAMEWORK_HAS_CXXABI_H)
#include <cxxabi.h>
// For some archtectures (mips, mips64, x86, x86_64) cxxabi.h in Android NDK is
// implemented by gabi++ library
// which does not implement abi::__cxa_demangle(). We detect this implementation
// by checking the include guard here.
#if defined(__GABIXX_CXXABI_H__)
#undef PADDLE_FRAMEWORK_HAS_CXXABI_H
#else
#include <cstddef>
#include <cstdlib>
#endif
#endif
namespace paddle {
namespace framework {
inline char const* demangle_alloc(char const* name);
inline void demangle_free(char const* name);
class scoped_demangled_name {
private:
char const* m_p;
public:
explicit scoped_demangled_name(char const* name)
: m_p(demangle_alloc(name)) {}
~scoped_demangled_name() { demangle_free(m_p); }
char const* get() const { return m_p; }
scoped_demangled_name(scoped_demangled_name const&) = delete;
scoped_demangled_name& operator=(scoped_demangled_name const&) = delete;
};
#if defined(PADDLE_FRAMEWORK_HAS_CXXABI_H)
inline char const* demangle_alloc(char const* name) {
int status = 0;
std::size_t size = 0;
return abi::__cxa_demangle(name, NULL, &size, &status);
}
inline void demangle_free(char const* name) {
std::free(const_cast<char*>(name));
}
inline std::string demangle(char const* name) {
scoped_demangled_name demangled_name(name);
char const* p = demangled_name.get();
if (!p) p = name;
return p;
}
#else
inline char const* demangle_alloc(char const* name) { return name; }
inline void demangle_free(char const*) {}
inline std::string demangle(char const* name) { return name; }
#endif
} // namespace framework
} // namespace paddle
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
*
* 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 <string>
#include <vector>
#include "gtest/gtest.h"
#include "paddle/fluid/framework/attribute_type.h"
TEST(Attribute, TypeName) {
bool boolean;
int integer;
float ft;
std::string str;
std::vector<bool> booleans;
std::vector<int> integers;
std::vector<std::string> strings;
EXPECT_EQ("bool", paddle::framework::demangle(typeid(boolean).name()));
EXPECT_EQ("int", paddle::framework::demangle(typeid(integer).name()));
EXPECT_EQ("float", paddle::framework::demangle(typeid(ft).name()));
EXPECT_EQ(
"std::__cxx11::basic_string<char, std::char_traits<char>, "
"std::allocator<char> >",
paddle::framework::demangle(typeid(str).name()));
EXPECT_EQ("std::vector<bool, std::allocator<bool> >",
paddle::framework::demangle(typeid(booleans).name()));
EXPECT_EQ("std::vector<int, std::allocator<int> >",
paddle::framework::demangle(typeid(integers).name()));
EXPECT_EQ(
"std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, "
"std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, "
"std::char_traits<char>, std::allocator<char> > > >",
paddle::framework::demangle(typeid(strings).name()));
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册