mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-23 16:44:22 +00:00
42 lines
812 B
C
42 lines
812 B
C
|
#ifndef GESUMMV_H
|
||
|
# define GESUMMV_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. */
|
||
|
# ifndef N
|
||
|
/* Define the possible dataset sizes. */
|
||
|
# ifdef MINI_DATASET
|
||
|
# define N 32
|
||
|
# endif
|
||
|
|
||
|
# ifdef SMALL_DATASET
|
||
|
# define N 500
|
||
|
# endif
|
||
|
|
||
|
# ifdef STANDARD_DATASET /* Default if unspecified. */
|
||
|
# define N 4000
|
||
|
# endif
|
||
|
|
||
|
# ifdef LARGE_DATASET
|
||
|
# define N 8000
|
||
|
# endif
|
||
|
|
||
|
# ifdef EXTRALARGE_DATASET
|
||
|
# define N 100000
|
||
|
# endif
|
||
|
# endif /* !N */
|
||
|
|
||
|
# define _PB_N POLYBENCH_LOOP_BOUND(N,n)
|
||
|
|
||
|
# ifndef DATA_TYPE
|
||
|
# define DATA_TYPE double
|
||
|
# define DATA_PRINTF_MODIFIER "%0.2lf "
|
||
|
# endif
|
||
|
|
||
|
|
||
|
#endif /* !GESUMMV */
|