This commit is contained in:
gabrielkheisa 2022-11-27 12:37:54 +07:00
parent 45293c6962
commit 80f1f66052

View File

@ -76,17 +76,17 @@ C
write(*,*) ' Start rehearsal measurement process.'
write(*,*) ' Measure the performance in 10000 times.'
C
cpu0=dtime(time0)
! cpu0=dtime(time0)
t1 = omp_get_wtime()
!$OMP PARALLEL DO
C
C Jacobi iteration
call jacobi(nn,gosa)
C
cpu1= dtime(time1)
! cpu1= dtime(time1)
!$OMP END PARALLEL DO
t2 = omp_get_wtime()
cpu = cpu1
! cpu = cpu1
cpu = t2-t1
flop=real(kmax-2)*real(jmax-2)*real(imax-2)*34.0*real(nn)
xmflops2=flop/cpu*1.0e-6