Commit 797c08cd authored by Gaurav Kukreja's avatar Gaurav Kukreja

Autoparallel, num-threads=8

Signed-off-by: 's avatarGaurav Kukreja <mailme.gaurav@gmail.com>
parent 11603e91
# Intel compiler # Intel compiler
CC = icc CC = icc
CFLAGS = -g -parallel -par-report3 -fargument-noalias CFLAGS = -g -parallel -par-report3 -fargument-noalias -O3 -par-num-threads=8
MPICC = mpicc MPICC = mpicc
......
...@@ -45,7 +45,7 @@ double relax_jacobi_return_residual( double *u, double *utmp, ...@@ -45,7 +45,7 @@ double relax_jacobi_return_residual( double *u, double *utmp,
int i, j; int i, j;
double unew, diff, sum=0.0; double unew, diff, sum=0.0;
#pragma parallel #pragma parallel always
for( i=1; i<sizey-1; i++ ) for( i=1; i<sizey-1; i++ )
{ {
for( j=1; j<sizex-1; j++ ) for( j=1; j<sizex-1; j++ )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment