Skip to content

Commit

Permalink
remove debugging print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
helenarichie committed Jun 17, 2024
1 parent 8b8a593 commit 89935c9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/dust/dust_cuda.cu
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ __global__ void Dust_Kernel(Real *dev_conserved, int nx, int ny, int nz, int n_g
density_gas = dev_conserved[id + n_cells * grid_enum::density];
density_dust = dev_conserved[id + n_cells * grid_enum::dust_density];

printf("%d %f", id, density_dust);
// convert mass density to number density
number_density = density_gas * DENSITY_UNIT / (mu * MP);

Expand Down

0 comments on commit 89935c9

Please sign in to comment.