Skip to content

Commit

Permalink
removing print statement checks in dry conv
Browse files Browse the repository at this point in the history
  • Loading branch information
deitrr committed Feb 18, 2022
1 parent a51980f commit d4747c8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/headers/phy/dry_conv_adj.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ __global__ void dry_conv_adj(double *Pressure_d, // Pressure [Pa]
//

int id = blockIdx.x * blockDim.x + threadIdx.x;
if (id == 0)
printf("hourdin conv adj go\n");

// stability threshold
double stable = 0.0;
Expand Down Expand Up @@ -286,8 +284,6 @@ ray_dry_conv_adj(double *Pressure_d, // Pressure [Pa]

int id = blockIdx.x * blockDim.x + threadIdx.x;

if (id == 0)
printf("rayph conv adj go\n");
// Local arrays
// double theta[nv];
// double ph[nv + 1];
Expand Down

0 comments on commit d4747c8

Please sign in to comment.