Skip to content

Commit

Permalink
removed debugging traces
Browse files Browse the repository at this point in the history
  • Loading branch information
daurer committed Mar 8, 2024
1 parent b3e0ded commit aeec234
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ptypy/accelerate/cuda_common/batched_multiply.cu
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ extern "C" __global__ void batched_multiply(const complex<IN_TYPE>* input,
return;

auto val = input[gz * rows * columns + gy * rows + gx];
//printf("gx = %d, gy = %d, gz = %d, val= %.1f +i%.1f\n", gz,gy,gz, val.real(), val.imag());
//printf("threads: x=%d y=%d z=%d\n", threadIdx.x, threadIdx.y, threadIdx.z);
//printf("blocks: x=%d y=%d z=%d\n", blockIdx.x, blockIdx.y, blockIdx.z);
//printf("grids: x=%d y=%d z=%d\n", blockDim.x, blockDim.y, blockDim.z);


if (MPY_DO_FILT) // set at compile-time
{
Expand Down

0 comments on commit aeec234

Please sign in to comment.