运行符SYCL代码时结果不正确。同时尝试使循环

时间:2019-11-27 11:25:44

标签: parallel-processing sycl dpc++ intel-oneapi

我是这个并行编程领域的新手。我正在尝试并行化SYCL中的串行代码。但是,当我尝试运行代码时,得到的结果不正确。

请在下面找到序列号,SYCL代码并输出屏幕截图。请帮助我。

先谢谢了。

//Serial code

for(int i = 0; i < N; i++)
        a[i]=pow(p+i,q-i);

//Paralle code

queue defaultqueue;
        buffer<unsigned long long int,1> buf(a, range<1>(N));
        defaultqueue.submit([&](handler &cgh){
            auto bufacc = buf.get_access<access::mode::read_write>(cgh);
            cgh.parallel_for<class single_dim>(range<1>(N), [=](nd_item<1> it){
                auto idx = it.get_global_linear_id();
                unsigned long long int x;
                x=pow(p+idx,q-idx);
                bufacc[idx] += x;
            });
        });

Output of parallel code

1 个答案:

答案 0 :(得分:1)

SYCL中的内核调用是非阻塞的,即CPU在调用内核后继续执行,而无需等待内核完成

这可能会导致数据不一致,尤其是在您的情况下,因为您在内核启动后立即访问数据。当内核执行大量耗时的计算时,这将更为突出

因此,您可以在内核调用后尝试使用 defaultqueue.wait()

希望这可以解决您的问题