gpt4 book ai didi

c++ - 没有从 "std::allocator"到 "const allocator_type"的转换

转载 作者:行者123 更新时间:2023-11-28 06:44:32 25 4
gpt4 key购买 nike

我正在尝试在 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;
}

这一切都可以在 iccclang 下完美地编译和工作,但是对于 GCC 4.9,它不会编译,除非我制作 xy 都是常量引用。为什么 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com