其他分享
首页 > 其他分享> > c – 尝试将std :: aligned_storage与SSE和new一起使用

c – 尝试将std :: aligned_storage与SSE和new一起使用

作者:互联网

我想尝试使用C中的SSE instrincs来获取一些浮点数的平方根.但是当我尝试存储结果时,我得到一个例外.我可以像这样使用std :: aligned_storage吗?

#include <iostream>
#include <type_traits>
#include <xmmintrin.h>
using namespace std;

using float_storage = aligned_storage<4 * sizeof(float), 16>;

int main()
{
    int N;
    cin >> N;

    float_storage * values = new float_storage[ N / 4 ]; // 4 floats in pack

    for(int i = 0; i < N / 4; i++)
    {
        void *vptr = static_cast<void*>(&values[i]);
        float *fptr = static_cast<float*>(vptr);

        for(int i = 0; i < 4; i++)
            cin >> fptr[i];
    }

    for(int i = 0; i < N / 4; i++)
    {
        void *vptr = static_cast<void*>(&values[i]);
        float *fptr = static_cast<float*>(vptr);
        __m128 x = _mm_loadu_ps(fptr);
        x = _mm_sqrt_ps(x);
        _mm_store_ps(fptr, x); // im getting an crash here
    }

    for(int i = 0; i < N / 4; i++)
    {
        void *vptr = static_cast<void*>(&values[i]);
        float *fptr = static_cast<float*>(vptr);

        for(int i = 0; i < 4; i++)
            cout << fptr[i] << endl;
    }

    delete[] values;
}

解决方法:

它是aligned_storage< size,align> :: type. aligned_storage本身只是一个元编程结构.

另外,如果我没记错的话,new只被评为std :: max_align_t,即使你新建了一个具有更高对齐要求的类型.

标签:c,c11,memory-management,sse,memory-alignment
来源: https://codeday.me/bug/20190825/1715132.html