/*******************************************************************************
* This file is part of SWIFT.
* Copyright (c) 2017 Peter W. Draper (p.w.draper@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*
******************************************************************************/
#ifndef SWIFT_COLLECTGROUP_H
#define SWIFT_COLLECTGROUP_H
/* Config parameters. */
#include
/* Standard headers. */
#include
/* Local headers. */
#include "star_formation_logger_struct.h"
#include "timeline.h"
/* Forward declaration of engine struct (to avoid cyclic include). */
struct engine;
/* A collection of global quantities that can be processed at the same time. */
struct collectgroup1 {
/* Number of particles updated */
long long updated, g_updated, s_updated, b_updated, sink_updated;
/* Number of particles inhibited */
long long inhibited, g_inhibited, s_inhibited, b_inhibited, sink_inhibited;
/* SFH logger */
struct star_formation_history sfh;
/* Times for the time-step */
integertime_t ti_hydro_end_min, ti_hydro_beg_max;
integertime_t ti_rt_end_min, ti_rt_beg_max;
integertime_t ti_gravity_end_min, ti_gravity_beg_max;
integertime_t ti_stars_end_min, ti_stars_beg_max;
integertime_t ti_black_holes_end_min, ti_black_holes_beg_max;
integertime_t ti_sinks_end_min, ti_sinks_beg_max;
/* Force the engine to rebuild? */
int forcerebuild;
/* Totals of cells and tasks. */
long long total_nr_cells;
long long total_nr_tasks;
/* Maximum value of actual tasks per cell across all ranks. */
float tasks_per_cell_max;
/* Global runtime of application in hours. */
float runtime;
/* Flag to determine if lightcone maps should be updated this step */
int flush_lightcone_maps;
/* Accumulated dead time during the step. */
double deadtime;
#ifdef WITH_CSDS
/* Filesize used by the CSDS (does not correspond to the allocated one) */
float csds_file_size_gb;
#endif
};
void collectgroup_init(void);
void collectgroup1_apply(const struct collectgroup1 *grp1, struct engine *e);
void collectgroup1_init(
struct collectgroup1 *grp1, size_t updated, size_t g_updated,
size_t s_updated, size_t b_updated, size_t sink_updated, size_t inhibited,
size_t g_inhibited, size_t s_inhibited, size_t sink_inhibited,
size_t b_inhibited, integertime_t ti_hydro_end_min,
integertime_t ti_hydro_beg_max, integertime_t ti_rt_end_min,
integertime_t ti_rt_beg_max, integertime_t ti_gravity_end_min,
integertime_t ti_gravity_beg_max, integertime_t ti_stars_end_min,
integertime_t ti_stars_beg_max, integertime_t ti_sinks_end_min,
integertime_t ti_sinks_beg_max, integertime_t ti_black_holes_end_min,
integertime_t ti_black_holes_beg_max, int forcerebuild,
long long total_nr_cells, long long total_nr_tasks, float tasks_per_cell,
const struct star_formation_history sfh, float runtime,
int flush_lightcone_maps, double deadtime, float csds_file_size_gb);
void collectgroup1_reduce(struct collectgroup1 *grp1);
#ifdef WITH_MPI
void mpicollect_free_MPI_type(void);
#endif
#endif /* SWIFT_COLLECTGROUP_H */