@@ -102,15 +102,16 @@ struct ChunkloopData {
102
102
ChunkloopData (std::size_t ind_time,
103
103
spatial_chunk_t ::shape_t calc_domain_shape, spatial_chunk_t ::ind_t storage_domain_start_ind,
104
104
spatial_chunk_t ::shape_t storage_domain_shape,
105
- darr_t & fstor, fstats_t & fstats, scalar_t dynamic_range,
105
+ darr_t & fstor, fstats_t & fstats, scalar_t dynamic_range, std:: size_t calc_chunk_size_t , std:: size_t calc_chunk_size_linear,
106
106
scalar_t abs_min_field, const chunk_t ::ind_t & downsampling_factor,
107
107
const chunk_t ::shape_t & init_field_buffer_shape, const chunk_t ::shape_t & init_field_buffer_processed_shape,
108
108
const fstats_t ::shape_t & init_stat_buffer_shape, const chunk_t ::shape_t & init_field_chunk_buffer_shape) :
109
109
ind_time (ind_time),
110
110
calc_domain_shape (calc_domain_shape), storage_domain_start_ind(storage_domain_start_ind), storage_domain_shape(storage_domain_shape),
111
- fstor (fstor), fstats(fstats), dynamic_range(dynamic_range), abs_min_field(abs_min_field),
112
- downsampling_factor (downsampling_factor), field_buffer(init_field_buffer_shape), field_buffer_processed(init_field_buffer_processed_shape),
113
- field_absval_buffer(init_stat_buffer_shape), field_chunk_buffer(init_field_chunk_buffer_shape) { }
111
+ fstor (fstor), fstats(fstats), dynamic_range(dynamic_range), calc_chunk_size_t (calc_chunk_size_t ), calc_chunk_size_linear(calc_chunk_size_linear),
112
+ abs_min_field (abs_min_field), downsampling_factor(downsampling_factor), field_buffer(init_field_buffer_shape),
113
+ field_buffer_processed (init_field_buffer_processed_shape), field_absval_buffer(init_stat_buffer_shape),
114
+ field_chunk_buffer (init_field_chunk_buffer_shape) { }
114
115
115
116
std::size_t ind_time; // Time index
116
117
@@ -123,6 +124,8 @@ struct ChunkloopData {
123
124
fstats_t & fstats; // Reference to field statistics tracker
124
125
125
126
scalar_t dynamic_range; // Dynamic range of field to keep
127
+ std::size_t calc_chunk_size_t ; // Chunk size along the time direction that is used during Green's function calculation
128
+ std::size_t calc_chunk_size_linear; // Chunk size along the spatial direction(s) used during Green's function calculation
126
129
scalar_t abs_min_field; // Abs. minimum field value to keep
127
130
chunk_t ::ind_t downsampling_factor;
128
131
@@ -301,10 +304,7 @@ namespace meep {
301
304
}
302
305
303
306
// std::cout << "------------" << std::endl;
304
- // std::cout << "chunk #: " << ichunk << std::endl;
305
-
306
- // Number of time slices before a new chunk is started
307
- std::size_t requested_chunk_size_t = 200 ;
307
+ // std::cout << "chunk #: " << ichunk << std::endl;
308
308
309
309
// Make sure the buffers are of the correct size for this simulation chunk
310
310
ZRVector<std::size_t > spatial_storage_chunk_shape (chunkloop_data -> sim_chunk_meta.at (ichunk).storage_chunk_shape );
@@ -396,10 +396,10 @@ namespace meep {
396
396
// chunkloop_data -> field_buffer_processed.GetShape() << std::endl;
397
397
398
398
using shape_t = CylindricalChunkloopData::chunk_t ::shape_t ;
399
- shape_t requested_output_chunk_size (400 );
399
+ shape_t requested_output_chunk_size (chunkloop_data -> calc_chunk_size_linear );
400
400
401
401
// Register the processed buffer
402
- if (chunkloop_data -> ind_time % requested_chunk_size_t == 0 ) {
402
+ if (chunkloop_data -> ind_time % chunkloop_data -> calc_chunk_size_t == 0 ) {
403
403
404
404
// Register this slice as the beginning of a new chunk ...
405
405
TZRIndexVector start (0 );
@@ -452,7 +452,8 @@ namespace GreensFunctionCalculator::MEEP {
452
452
453
453
CylindricalGreensFunctionCalculator::MPIChunkCalculationResult
454
454
CylindricalGreensFunctionCalculator::calculate_mpi_chunk (std::filesystem::path outdir, std::filesystem::path local_scratchdir, std::size_t padding_requested,
455
- double courant_factor, double resolution, double timestep, double pml_width, std::size_t downsampling_on_disk,
455
+ double courant_factor, double resolution, double timestep, std::size_t calc_chunk_size_t ,
456
+ std::size_t calc_chunk_size_linear, double pml_width, std::size_t downsampling_on_disk,
456
457
scalar_t dynamic_range, scalar_t abs_min_field) {
457
458
458
459
// Make sure that MEEP will not silently round the domain size
@@ -561,7 +562,7 @@ namespace GreensFunctionCalculator::MEEP {
561
562
562
563
// Package up all the information
563
564
CylindricalChunkloopData cld (0 , calc_domain_shape, storage_domain_padded_start_ind, storage_domain_padded_shape,
564
- darr, fstats, dynamic_range, abs_min_field, downsampling_factor,
565
+ darr, fstats, dynamic_range, calc_chunk_size_t , calc_chunk_size_linear, abs_min_field, downsampling_factor,
565
566
init_field_buffer_shape, init_field_buffer_shape,
566
567
init_field_absval_buffer_shape, init_field_chunk_buffer_shape);
567
568
@@ -738,7 +739,7 @@ namespace GreensFunctionCalculator::MEEP {
738
739
void CylindricalGreensFunctionCalculator::Calculate (std::filesystem::path outdir, std::filesystem::path local_scratchdir, std::filesystem::path global_scratchdir,
739
740
double courant_factor, double resolution, double timestep, double pml_width, std::size_t downsampling_on_disk,
740
741
scalar_t dynamic_range, scalar_t abs_min_field, std::size_t chunk_overlap, std::size_t chunk_size_linear,
741
- std::size_t rechunk_cache_depth) {
742
+ std::size_t rechunk_cache_depth, std:: size_t calc_chunk_size_t , std:: size_t calc_chunk_size_linear ) {
742
743
743
744
int number_mpi_jobs = meep::count_processors ();
744
745
int job_mpi_rank = meep::my_rank ();
@@ -772,8 +773,8 @@ namespace GreensFunctionCalculator::MEEP {
772
773
std::filesystem::path job_outdir = global_workdir / calc_job_dir (job_mpi_rank);
773
774
std::size_t padding_requested = chunk_overlap; // number of additional elements that should be foreseen as padding around the calculated array
774
775
MPIChunkCalculationResult mpi_calc_res = calculate_mpi_chunk (job_outdir, local_scratchdir, padding_requested,
775
- courant_factor, resolution, timestep, pml_width ,
776
- downsampling_on_disk, dynamic_range, abs_min_field);
776
+ courant_factor, resolution, timestep, calc_chunk_size_t , calc_chunk_size_linear ,
777
+ pml_width, downsampling_on_disk, dynamic_range, abs_min_field);
777
778
778
779
meep::all_wait (); // Wait for all processes to have finished providing their output
779
780
0 commit comments