mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 05:47:35 -04:00
10 lines
No EOL
213 B
Common Lisp
10 lines
No EOL
213 B
Common Lisp
|
|
#include "common.h"
|
|
|
|
__kernel void vecadd (__global const TYPE *A,
|
|
__global const TYPE *B,
|
|
__global TYPE *C)
|
|
{
|
|
int gid = get_global_id(0);
|
|
C[gid] = A[gid] + B[gid];
|
|
} |