zeratax / yacx

Yet Another CudaExecutor - wrapper to easily compile and execute cuda kernels
https://zeratax.github.io/yacx
MIT License
8 stars 4 forks source link

#21 source-program-kernel rename #24

Closed hadis1000 closed 4 years ago

hadis1000 commented 4 years ago

Rename Program to Source, Kernel to Program and move launch & configure from old Program to a new class Kernel

hadis1000 commented 4 years ago

source .program("my_kernel") // program .instantiate(type_of(data), 5) // program .compile(options) // kernel .configure(grid, block) // kernel .launch(program_args); // kernel