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.
我可以使用 pragma omp 并行部分来解决我的代码的两个并发部分,它们通过其地址调用相同的函数吗?
在这种情况下,被调用的函数是否具有两个线程的公共变量,因此没有发生加速?
我可以吗 …?
是的。
唔?该函数中的局部变量是线程的局部变量。无论您是通过其地址还是直接调用它都无关紧要。只有当函数修改全局状态时才会出现问题。