X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f3ae712a1b95294052b6e8136d0f0f2d4b30e6eb..4d648ebbbe5705878080b9cbf1ca61497323c592:/examples/smpi/energy/f90/sef90.f90 diff --git a/examples/smpi/energy/f90/sef90.f90 b/examples/smpi/energy/f90/sef90.f90 index 833bf731c2..245dfa9b8d 100644 --- a/examples/smpi/energy/f90/sef90.f90 +++ b/examples/smpi/energy/f90/sef90.f90 @@ -1,4 +1,4 @@ -! Copyright (c) 2013-2014. The SimGrid Team. +! Copyright (c) 2013-2019. The SimGrid Team. ! All rights reserved. ! This program is free software; you can redistribute it and/or modify it @@ -28,26 +28,32 @@ program main t = MPI_Wtime() - print *, '[', t, '] [rank ', rank, ']', pstates, 'pstates available' + print '(1a,F15.8,1a,i2,1a,i2,1a)', '[', t, '] [rank ', rank, '] ',& + pstates, ' pstates available' do i = 0, pstates - 1 p = smpi_get_host_power_peak_at(i) - print *, '[', t, '] [rank ', rank, '] Power: ', p + print '(1a,F15.8,1a,i2,1a,F15.4)', '[', t, '] [rank ', rank, & + '] Power: ', p end do do i = 0, pstates - 1 - call smpi_set_host_power_peak_at(i) + call smpi_set_host_pstate(i) t = MPI_Wtime() p = smpi_get_host_current_power_peak() - print *, '[', t, '] [rank ', rank, '] Current pstate: ', i, '; Current power: ', p + print '(1a,F15.8,1a,i2,1a,i2,1a,F15.4)', '[', t, '] [rank ', & + rank, '] Current pstate: ', i, '; Current power: ', p e = 1e9 call smpi_execute_flops(e) t = MPI_Wtime() e = smpi_get_host_consumed_energy() - print *, '[', t, '] [rank ', rank, '] Energy consumed (Joules): ', e + print '(1a,F15.8,1a,i2,1a,F15.4)', '[', t, '] [rank ', & + rank, '] Energy consumed (Joules): ', e end do + flush(6) + call MPI_Finalize(ierr) if (ierr .ne. MPI_SUCCESS) then print *, 'MPI_Finalize failed:', ierr