gpt4 book ai didi

c++ - SSE _mm_load_ps 导致段错误

转载 作者:太空狗 更新时间:2023-10-29 19:58:24 30 4
gpt4 key购买 nike

所以我在学习使用 SSE 内在函数编程时遇到了这个玩具示例的问题。我在这里的其他线程上读到,有时 _mm_load_ps 函数的段错误是由于没有正确对齐而引起的,但我认为它应该由 attribute((aligned(16 ))) 我做的事。此外,当我在代码中注释掉第 23 行或第 24 行(或两者)时,问题就消失了,但显然这会使代码无法正常工作。

#include <iostream>
using namespace std;

int main()
{
float temp1[] __attribute__((__aligned__(16))) = {1.1,1.2,1.3,14.5,3.1,5.2,2.3,3.4};
float temp2[] __attribute__((__aligned__(16))) = {1.2,2.3,3.4,3.5,1.2,2.3,4.2,2.2};
float temp3[8];
__m128 m, *m_result;
__m128 arr1 = _mm_load_ps(temp1);
__m128 arr2 = _mm_load_ps(temp2);

m = _mm_mul_ps(arr1, arr2);
*m_result = _mm_add_ps(m, m);
_mm_store_ps(temp3, *m_result);
for(int i = 0; i < 4; i++)
{
cout << temp3[i] << endl;
}

m_result++;
arr1 = _mm_load_ps(temp1+4);
arr2 = _mm_load_ps(temp2+4);
m = _mm_mul_ps(arr1, arr2);
*m_result = _mm_add_ps(m,m);
_mm_store_ps(temp3, *m_result);


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

第 23 行是 arr1 = _mm_load_ps(temp1+4)。对我来说很奇怪,我可以做一个或另一个而不是两个。任何帮助将不胜感激,谢谢!

最佳答案

您的问题是您声明了一个指针 __m128 *m_result 但您从未为其分配任何空间。稍后您还可以执行 m_result++ ,它指向另一个尚未分配的内存地址。没有理由在这里使用指针。

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

int main()
{
float temp1[] __attribute__((__aligned__(16))) = {1.1,1.2,1.3,14.5,3.1,5.2,2.3,3.4};
float temp2[] __attribute__((__aligned__(16))) = {1.2,2.3,3.4,3.5,1.2,2.3,4.2,2.2};
float temp3[8];
__m128 m, m_result;
__m128 arr1 = _mm_load_ps(temp1);
__m128 arr2 = _mm_load_ps(temp2);

m = _mm_mul_ps(arr1, arr2);
m_result = _mm_add_ps(m, m);
_mm_store_ps(temp3, m_result);
for(int i = 0; i < 4; i++)
{
cout << temp3[i] << endl;
}

arr1 = _mm_load_ps(temp1+4);
arr2 = _mm_load_ps(temp2+4);
m = _mm_mul_ps(arr1, arr2);
m_result = _mm_add_ps(m,m);
_mm_store_ps(temp3, m_result);


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

关于c++ - SSE _mm_load_ps 导致段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21722237/

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