1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-23 08:34:23 +00:00
hpc-2022-g3/OpenMP/linear-algebra/kernels/doitgen/doitgen.h
Alessandro Capotondi e11b42a518 init commit
2022-11-11 13:23:45 +01:00

53 lines
1.1 KiB
C

#ifndef DOITGEN_H
# define DOITGEN_H
/* Default to STANDARD_DATASET. */
# if !defined(MINI_DATASET) && !defined(SMALL_DATASET) && !defined(LARGE_DATASET) && !defined(EXTRALARGE_DATASET)
# define STANDARD_DATASET
# endif
/* Do not define anything if the user manually defines the size. */
# if !defined(NQ) && !defined(NR) && !defined(NP)
/* Define the possible dataset sizes. */
# ifdef MINI_DATASET
# define NQ 10
# define NR 10
# define NP 10
# endif
# ifdef SMALL_DATASET
# define NQ 32
# define NR 32
# define NP 32
# endif
# ifdef STANDARD_DATASET /* Default if unspecified. */
# define NQ 128
# define NR 128
# define NP 128
# endif
# ifdef LARGE_DATASET
# define NQ 256
# define NR 256
# define NP 256
# endif
# ifdef EXTRALARGE_DATASET
# define NQ 1000
# define NR 1000
# define NP 1000
# endif
# endif /* !N */
# define _PB_NQ POLYBENCH_LOOP_BOUND(NQ,nq)
# define _PB_NR POLYBENCH_LOOP_BOUND(NR,nr)
# define _PB_NP POLYBENCH_LOOP_BOUND(NP,np)
# ifndef DATA_TYPE
# define DATA_TYPE double
# define DATA_PRINTF_MODIFIER "%0.2lf "
# endif
#endif /* !DOITGEN */