remove debug messages
This commit is contained in:
parent
bd6a0542d5
commit
4488284027
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue