Skip to content
Snippets Groups Projects
Commit 7b9b787c authored by Cristian Lalescu's avatar Cristian Lalescu
Browse files

remove debug messages

parent 3823da66
Branches
Tags 0.3.3
No related merge requests found
...@@ -59,7 +59,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base): ...@@ -59,7 +59,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base):
hid_t group; hid_t group;
hid_t Cspace, Cdset; hid_t Cspace, Cdset;
int ndims; int ndims;
DEBUG_MSG("about to grow datasets\\n");
// store kspace information // store kspace information
Cdset = H5Dopen(stat_file, "/kspace/kshell", H5P_DEFAULT); Cdset = H5Dopen(stat_file, "/kspace/kshell", H5P_DEFAULT);
Cspace = H5Dget_space(Cdset); Cspace = H5Dget_space(Cdset);
...@@ -86,7 +85,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base): ...@@ -86,7 +85,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base):
group = H5Gopen(stat_file, "/statistics", H5P_DEFAULT); group = H5Gopen(stat_file, "/statistics", H5P_DEFAULT);
H5Ovisit(group, H5_INDEX_NAME, H5_ITER_NATIVE, grow_statistics_dataset, NULL); H5Ovisit(group, H5_INDEX_NAME, H5_ITER_NATIVE, grow_statistics_dataset, NULL);
H5Gclose(group); H5Gclose(group);
DEBUG_MSG("finished growing datasets\\n");
//endcpp //endcpp
""" """
self.style = {} self.style = {}
...@@ -335,7 +333,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base): ...@@ -335,7 +333,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base):
self.fluid_start += """ self.fluid_start += """
//begincpp //begincpp
char fname[512]; char fname[512];
DEBUG_MSG("about to allocate fluid_solver\\n");
fs = new fluid_solver<{0}>( fs = new fluid_solver<{0}>(
simname, simname,
nx, ny, nz, nx, ny, nz,
...@@ -350,7 +347,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base): ...@@ -350,7 +347,6 @@ class NavierStokes(bfps.fluid_base.fluid_particle_base):
strncpy(fs->forcing_type, forcing_type, 128); strncpy(fs->forcing_type, forcing_type, 128);
fs->iteration = iteration; fs->iteration = iteration;
fs->read('v', 'c'); fs->read('v', 'c');
DEBUG_MSG("finished reading initial condition\\n");
if (fs->cd->myrank == 0) if (fs->cd->myrank == 0)
{{ {{
H5T_field_complex = H5Tcreate(H5T_COMPOUND, sizeof(tmp_complex_type)); H5T_field_complex = H5Tcreate(H5T_COMPOUND, sizeof(tmp_complex_type));
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
//#define NDEBUG #define NDEBUG
#include <cassert> #include <cassert>
#include <cmath> #include <cmath>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment