All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.BeardedManZhao.easilyJopenCL.kernel.KernelFunction Maven / Gradle / Ivy

The newest version!
package io.github.BeardedManZhao.easilyJopenCL.kernel;

/**
 * 内核计算函数实现组件
 *
 * @author zhao - 赵凌宇
 */
public interface KernelFunction {

    /**
     * 内核计算函数实现逻辑
     *
     * @param args 内核计算函数实现逻辑所需参数,不同的 KernelSource 类型组件所需的参数不同 可以在 KernelSource 中的注释中查看!
     *             

* The parameters required for implementing logic in kernel computing functions are different for different KernelSource type components, which can be viewed in the comments in KernelSource! * @return 使用 args 拼接的 kernelSource 代码。 *

* Use kernelSource code concatenated with args. */ String calculateKernelSource(String... args); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy