当前位置:  开发笔记 > 编程语言 > 正文

如何调用boost_compute'BOOST_COMPUTE_FUNCTION'定义函数?

如何解决《如何调用boost_compute'BOOST_COMPUTE_FUNCTION'定义函数?》经验,为你挑选了0个好方法。

我正在探索boost_compute.不幸的是,文档页面和示例比我需要了解的更少.

鉴于以下缩小的代码:

BOOST_COMPUTE_FUNCTION(bool, add, (int* values, int* results, int constant),
{
    // Whats the indexing variable?
    // In opencl it would be get_global_id(0)
    int index = // ?

    results[index] = values[index] + values[index + 1] + values[index + 2] + constant;
});

void compute(float* results, compute::context* ctx, compute::command_queue* queue)
{
    compute::vector device_values(100, *ctx);
    compute::vector device_results(98, *ctx);

    compute::copy(
        parameters->values.begin(), parameters->values.end(), device_values.begin(), *queue
    );

    // Actual computation
    // HOW TO CALL 'add' for every device_results element?

    compute::copy(
        device_results.begin(), device_results.end(), results, *queue
    );
}

如何调用'add'函数以及这个函数内部的迭代变量是什么?此外,我需要这种代码结构来进行更复杂的计算.

亲切的问候,托尼

推荐阅读
云聪京初瑞子_617
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有