mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2025-02-16 17:13:57 +00:00
Reformat atax.hu
This commit is contained in:
parent
518040a414
commit
6c97ed5107
1 changed files with 40 additions and 36 deletions
|
@ -1,47 +1,51 @@
|
|||
#ifndef ATAX_H
|
||||
# define ATAX_H
|
||||
|
||||
/* Default to STANDARD_DATASET. */
|
||||
# if !defined(MINI_DATASET) && !defined(SMALL_DATASET) && !defined(STANDARD_DATASET) && !defined(LARGE_DATASET) && !defined(EXTRALARGE_DATASET)
|
||||
# define STANDARD_DATASET
|
||||
# endif
|
||||
#define ATAX_H
|
||||
|
||||
/* Do not define anything if the user manually defines the size. */
|
||||
# if !defined(NX) && !defined(NY)
|
||||
/* Define the possible dataset sizes. */
|
||||
# ifdef MINI_DATASET
|
||||
# define NX 32
|
||||
# define NY 32
|
||||
# endif
|
||||
/* Default to STANDARD_DATASET. */
|
||||
#if !defined(MINI_DATASET) && !defined(SMALL_DATASET) && !defined(STANDARD_DATASET) && !defined(LARGE_DATASET) && !defined(EXTRALARGE_DATASET)
|
||||
#define STANDARD_DATASET
|
||||
#endif
|
||||
|
||||
# ifdef SMALL_DATASET
|
||||
# define NX 500
|
||||
# define NY 500
|
||||
# endif
|
||||
/* Do not define anything if the user manually defines the size. */
|
||||
# if !defined(NX) && !defined(NY)
|
||||
|
||||
# ifdef STANDARD_DATASET /* Default if unspecified. */
|
||||
# define NX 4000
|
||||
# define NY 4000
|
||||
# endif
|
||||
/* Define the possible dataset sizes. */
|
||||
|
||||
# ifdef LARGE_DATASET
|
||||
# define NX 8000
|
||||
# define NY 8000
|
||||
# endif
|
||||
#ifdef MINI_DATASET
|
||||
#define NX 32
|
||||
#define NY 32
|
||||
#endif
|
||||
|
||||
# ifdef EXTRALARGE_DATASET
|
||||
# define NX 12000
|
||||
# define NY 12000
|
||||
# endif
|
||||
# endif /* !N */
|
||||
#ifdef SMALL_DATASET
|
||||
#define NX 500
|
||||
#define NY 500
|
||||
#endif
|
||||
|
||||
# define _PB_NX POLYBENCH_LOOP_BOUND(NX,nx)
|
||||
# define _PB_NY POLYBENCH_LOOP_BOUND(NY,ny)
|
||||
#ifdef STANDARD_DATASET
|
||||
#define NX 4000
|
||||
#define NY 4000
|
||||
#endif
|
||||
|
||||
# ifndef DATA_TYPE
|
||||
# define DATA_TYPE double
|
||||
# define DATA_PRINTF_MODIFIER "%0.2lf "
|
||||
# endif
|
||||
#ifdef LARGE_DATASET
|
||||
#define NX 8000
|
||||
#define NY 8000
|
||||
#endif
|
||||
|
||||
#ifdef EXTRALARGE_DATASET
|
||||
#define NX 12000
|
||||
#define NY 12000
|
||||
#endif
|
||||
|
||||
#endif /* !ATAX */
|
||||
#endif
|
||||
|
||||
#define _PB_NX POLYBENCH_LOOP_BOUND(NX,nx)
|
||||
#define _PB_NY POLYBENCH_LOOP_BOUND(NY,ny)
|
||||
|
||||
/* Define the data type to perform the benchmark with. */
|
||||
#ifndef DATA_TYPE
|
||||
#define DATA_TYPE double
|
||||
#define DATA_PRINTF_MODIFIER "%0.2lf "
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue