add opencl dir

This commit is contained in:
2024-01-05 20:40:37 +01:00
parent fd121e7979
commit f5b00f662c
4 changed files with 297 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
__kernel void vector_add(float alpha, __global const int *A, __global const int *B, __global int *C) {
// Get the index of the current element to be processed
int i = get_global_id(0);
// Do the operation
C[i] = alpha * A[i] + B[i];
}