diff --git a/assets/code/2223_a_2_a.cu b/assets/code/2223_a_2_a.cu index dd4b5d1..cfc2f58 100644 --- a/assets/code/2223_a_2_a.cu +++ b/assets/code/2223_a_2_a.cu @@ -2,7 +2,6 @@ __global__ void calculate(float *a, float *b, float *c, float *d) { // Kernel declaration - printf("test test\n"); float temp = *a + *b; // Pointer variable operation *d = temp / *c; }