作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 C++11 中实现与 MKL 一起使用的对齐分配器。我有:
template <typename T, size_t TALIGN = 16, size_t TBLOCK = 4>
class aligned_allocator : public std::allocator<T>
{
typedef typename std::allocator<T>::pointer pointer;
typedef typename std::allocator<T>::size_type size_type;
public:
pointer allocate(size_type n, const void *hint = nullptr);
void deallocate(pointer p, size_type n);
};
在其他地方,我有:
template<typename T> using aligned_vector = std::vector<T, aligned_allocator<T>>;
最后,我有这个运算符重载:
inline aligned_vector<double> operator+(aligned_vector<double> x, aligned_vector<double> y)
{
aligned_vector<double> z(x.size());
vdAdd(x.size(), x.data(), y.data(), z.data());
return z;
}
这一切都可以在 icc
和 clang
下完美地编译和工作,但是对于 GCC 4.9,它不会编译,除非我制作 x
和 y
都是常量引用。为什么 GCC 要求这样做而其他人不需要?
最佳答案
您缺少重新绑定(bind)
:
template <typename U> struct rebind { typedef aligned_allocator<U> other; };
就是说,你不应该从 std::allocator
继承:Why not to inherit from std::allocator
关于c++ - 没有从 "std::allocator"到 "const allocator_type"的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25251356/
我有 operator>>() 的模板重载,我需要区分可以调整大小的容器(例如 vector)和不能调整大小的容器(例如, 数组。我目前只是在使用 allocator_type 特征(见下面的代码)—
相关:Deprecation of std::allocator . 以下关于模板参数 Allocator 的描述可以在 std::vector 中找到和 std::list (强调我的): An a
我正在尝试在 C++11 中实现与 MKL 一起使用的对齐分配器。我有: template class aligned_allocator : public std::allocator {
我是一名优秀的程序员,十分优秀!