Skip to content

Commit

Permalink
Per #2003, set block_size = Nx * Ny to make these commands run faster.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Jan 20, 2022
1 parent 5a7caa2 commit 7949663
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion test/config/SeriesAnalysisConfig
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,33 @@ obs = {

////////////////////////////////////////////////////////////////////////////////

//
// Climatology data
//
climo_mean = {

file_name = [];
field = [];

regrid = {
method = NEAREST;
width = 1;
vld_thresh = 0.5;
shape = SQUARE;
}

time_interp_method = DW_MEAN;
day_interval = 31;
hour_interval = 6;
}

climo_stdev = climo_mean;
climo_stdev = {
file_name = [];
}

////////////////////////////////////////////////////////////////////////////////

//
// Confidence interval settings
//
Expand Down Expand Up @@ -80,7 +107,7 @@ mask = {
// Number of grid points to be processed concurrently. Set smaller to use
// less memory but increase the number of passes through the data.
//
block_size = 10000;
block_size = 169*154;

//
// Ratio of valid matched pairs to compute statistics for a grid point
Expand Down

0 comments on commit 7949663

Please sign in to comment.