Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有带有内在函数的 ac 代码sse2。我正在尝试并行化此代码。此代码具有递归类型的句子:
sse2
*dex = _mm_add_pd(*dex,temp2);
我不能使用子句缩减,因为我认为只能与类型运算符 +、-、* ... 一起使用而没有指针。
我应该怎么办?
非常感谢大家并向大家问好。
每当您在 openmp 中遇到递归的东西时,只有并行部分和任务可以帮助您。