results.h 1.41 KB
Newer Older
1
2
3
#ifndef RESULTS_H
#define RESULTS_H

4
5
6
7
#include <stdio.h>
#include <stdlib.h>
#include <mpi.h>

8
9
#define RESULTS_INIT_DATA_QTY 100

10
11
typedef struct {
  // Iters data
12
  double *iters_time, **stage_times;
13
  size_t iters_async, iter_index, iters_size;
14

15
  // Spawn, Thread, Sync, Async and Exec time
16
  double spawn_start, *spawn_time, *spawn_real_time;
17
18
  double sync_start, sync_end,  *sync_time;
  double async_start, async_end, *async_time;
19
  double exec_start, exec_time;
20
  double wasted_time; // Time spent recalculating iter stages
21
22
} results_data;

23
void comm_results(results_data *results, int root, size_t resizes, MPI_Comm intercomm);
24

25
void set_results_post_reconfig(results_data *results, int grp, int sdr, int adr);
26
void reset_results_index(results_data *results);
27

28
29
void compute_results_iter(results_data *results, int myId, int numP, int root, MPI_Comm comm);
void compute_results_stages(results_data *results, int myId, int numP, int root, int n_stages, MPI_Comm comm);
30

31
void print_iter_results(results_data results);
32
33
void print_stage_results(results_data results, size_t n_stages);
void print_global_results(results_data results, size_t resizes);
34

35
void init_results_data(results_data *results, size_t resizes, size_t stages, size_t iters_size);
36
37
void realloc_results_iters(results_data *results, size_t stages, size_t needed);
void free_results_data(results_data *results, size_t stages);
38
39

#endif