我试图在SSL容器中存储SSE类型.我试过这个:
#include <iostream>
#include <vector>
int main()
{
typedef int v4sf __attribute__ (( vector_size(4*sizeof(float)) ));
v4sf a; // compiles
std::vector<v4sf> v1; // compiles, but nothing is actually allocated
// std::vector<v4sf> v2(10); // compiler error: can’t convert between vector values of different size
std::vector<v4sf> v(10, a); // Compiles, but segfaults
return 0;
}
但是如上所述,在不提供复制对象的情况下进行分配会产生编译器错误,而分配提供对象时会编译但会出现段错误.任何人都可以解释为什么我不能将这些SSE对象存储在这样的STL容器中(或者更好,提供正确的方法)?
最佳答案 要使其正常工作,您必须实现自定义分配器.要使用它,它是类型旁边的参数:
的std ::矢量< SSEType,CustomAlloc>容器;
CustomAlloc是分配器的位置.
你必须使用alligned_malloc或memalign来获取Allocater内存,但这是在这里取得成功的方法.
这里可以找到这样一个例子(不那么容易实现):
Implementing Allocator example
我已经对SSE做了很多,我观察到,这是使用alligned malloc并将其用于我的计算的最简单方法.