We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0734097 commit 3324a53Copy full SHA for 3324a53
1 file changed
samples/99_matrixexperimentsi8/matrix_kernels_i8.cl
@@ -36,9 +36,6 @@ kernel void i8_naive_TN(global int* C, global char* A, global char* B, int K)
36
int sum = 0;
37
for (int k = 0; k < K; k++) {
38
sum = A[k * K + m] * B[k * N + n] + sum;
39
- if (get_global_id(0) == 1 && get_global_id(1) == 0) {
40
- printf("after iteration %d: sum is %d\n", k, sum);
41
- }
42
}
43
44
sum = activation(sum);
0 commit comments