remove debug messages

This commit is contained in:
Ryan 2025-01-06 14:01:13 +08:00
parent bd6a0542d5
commit 4488284027

View file

@ -2,7 +2,6 @@
__global__ void calculate(float *a, float *b, float *c, float *d) { __global__ void calculate(float *a, float *b, float *c, float *d) {
// Kernel declaration // Kernel declaration
printf("test test\n");
float temp = *a + *b; // Pointer variable operation float temp = *a + *b; // Pointer variable operation
*d = temp / *c; *d = temp / *c;
} }