Skip to content

Commit

Permalink
moved DEBUG block outside of OMP region
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfrantz committed Nov 1, 2021
1 parent f86e5ba commit 934005f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/lower-level/resmerge-ll.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,12 +216,6 @@ short **toa_ = NULL;
}


#ifdef FORCE_DEBUG
set_brick_filename(TOA, "TOA-RESMERGED");
print_brick_info(TOA); set_brick_open(TOA, OPEN_CREATE); write_brick(TOA);
#endif


/** clean
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++**/
gsl_matrix_free (X); gsl_vector_free (x);
Expand All @@ -234,6 +228,11 @@ short **toa_ = NULL;

}

#ifdef FORCE_DEBUG
set_brick_filename(TOA, "TOA-RESMERGED");
print_brick_info(TOA); set_brick_open(TOA, OPEN_CREATE); write_brick(TOA);
#endif

#ifdef FORCE_CLOCK
proctime_print("Resolution merge", TIME);
#endif
Expand Down

0 comments on commit 934005f

Please # to comment.