c - openCL Kernel计算Pi不是正确的值

标签 c for-loop kernel opencl pi

美好的一天,

我有一个 openCL 内核,它使用 Leibniz 公式来计算 pi。目前我的问题是我返回的值不是 pi,而是 4。

__kernel void calculatePi(int numIterations, __global float *outputPi,
                          __local float* local_result, int numWorkers)
{
    __private const uint gid = get_global_id(0);
    __private const uint lid = get_local_id(0);
    __private const uint offset = numIterations*gid*2; 
    __private float sum = 0.0f;

    // Have the first worker initialize local_result
    if (gid == 0)
    {
        for (int i = 0; i < numWorkers; i++)
        {
            local_result[i] = 0.0f;
        }
    }

    // Have all workers wait until this is completed
    barrier(CLK_GLOBAL_MEM_FENCE);

    // Have each worker calculate their portion of pi
    // This is a private value
    for (int i=0; i<numIterations; i++) 
    {
        if (i % 2 == 0)
        {
            sum += 1 / (1 + 2*i + offset);
        }
        else
        {
            sum -= 1 / (1 + 2*i + offset);
        }
    }

    // Have each worker move their value to the appropriate
    // local_result slot so that the first worker can see it
    // when reducing next
    local_result[gid] = sum;    

    // Make sure all workers complete this task before continuing
    barrier(CLK_LOCAL_MEM_FENCE);

    // Have the first worker add up all of the other worker's values
    // to get the final value
    if (lid == 0)
    {
        outputPi[0] = 0;
        for (int i = 0; i < numWorkers; i++)
        {
            outputPi[0] += local_result[i]; 
        }

        outputPi[0] *= 4;
    }    
}

我已将所有输入引导至输出,以验证它们是否符合我的预期。 numIterations 是 16,numWorkers 也是 16。

当计算第一个 worker 的总和时,我希望总和为 1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + 1/13 - 1/15 + 1/17 - 1/19 + 1/21 - 1/23 + 1/25 - 1/27 + 1/29 - 1/31

前 16 次使用此计算器,我预计结果约为 3.2:https://scratch.mit.edu/projects/19546118/

如果我将最后一段代码修改为这样,以便我可以查看工作人员计算的“sum”值:

    // Have the first worker add up all of the other worker's values
    // to get the final value
    if (lid == 0)
    {
        outputPi[0] = sum * 4;
    } 

那么第一个worker返回的值为4,而不是预期的3.2

修改为除lid == 0之外的任何其他数字,所有其他工作人员都将其总和报告为0。所以我的问题是为什么是计算值?我的 sum 变量做错了什么吗?这应该是一个私有(private)变量,根据我对每个工作人员的理解,for 循环应该是连续的,但根据工作人员的数量,许多循环是并行执行的。

这是我的 github 的链接,其中上传了内核和主要代码。

https://github.com/TreverWagenhals/TreverWagenhals/tree/master/School/Heterogeneous%20Computing/Lab2

谢谢

最佳答案

您在代码中执行积分除法,应该是 float :

if (i % 2 == 0)
{
   sum += 1. / (1 + 2*i + offset); // notice the 1.
}
else
{
   sum -= 1. / (1 + 2*i + offset);
}

关于c - openCL Kernel计算Pi不是正确的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53398186/

相关文章:

c - 来自 ISR 和非 ISR 上下文的原子禁用和恢复中断 : may it be different on some platform?

c - 隐式类型转换的意外结果

c - 带有防护装置的多重包含 header

c - 循环遍历 C 中的一系列 float

linux - 如何检查 tasklet_init 调用是否失败?

linux - 启动 VM 时出错 - CentOS 内核 panic - 未同步 : Attemped to kill

c - pthread 和有点 "broadcast stream"

c - 在 Mac 上用 C 创建二叉树时出现总线错误 10

c++ - 将指针取消引用作为 for 循环条件?

javascript - 如何正确地为我的变量创建 for 循环?