mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-22 16:14:24 +00:00
Create workaround for unavailable M_PI
This commit is contained in:
parent
e11b42a518
commit
5bbe60d482
1 changed files with 7 additions and 0 deletions
|
@ -10,6 +10,13 @@
|
|||
/* Default data type is double, default size is 4000. */
|
||||
#include "atax.h"
|
||||
|
||||
// Workaround for the editor not finding M_PI
|
||||
// It is exclusive to the GNU C compiler
|
||||
// https://www.gnu.org/software/libc/manual/html_node/Mathematical-Constants.html
|
||||
#ifndef M_PI
|
||||
#define M_PI 3.141
|
||||
#endif
|
||||
|
||||
/* Array initialization. */
|
||||
static void init_array(int nx, int ny,
|
||||
DATA_TYPE POLYBENCH_2D(A, NX, NY, nx, ny),
|
||||
|
|
Loading…
Reference in a new issue