ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/do_Forces.F90
(Generate patch)

Comparing trunk/OOPSE/libmdtools/do_Forces.F90 (file contents):
Revision 673 by chuckv, Fri Aug 8 21:22:37 2003 UTC vs.
Revision 872 by chrisfen, Fri Nov 21 19:31:05 2003 UTC

# Line 4 | Line 4
4  
5   !! @author Charles F. Vardeman II
6   !! @author Matthew Meineke
7 < !! @version $Id: do_Forces.F90,v 1.28 2003-08-08 21:22:37 chuckv Exp $, $Date: 2003-08-08 21:22:37 $, $Name: not supported by cvs2svn $, $Revision: 1.28 $
7 > !! @version $Id: do_Forces.F90,v 1.37 2003-11-21 19:31:05 chrisfen Exp $, $Date: 2003-11-21 19:31:05 $, $Name: not supported by cvs2svn $, $Revision: 1.37 $
8  
9   module do_Forces
10    use force_globals
# Line 45 | Line 45 | contains
45    public :: do_force_loop
46    public :: setRlistDF
47  
48 + #ifdef PROFILE
49 +  real(kind = dp) :: forceTime
50 +  real(kind = dp) :: forceTimeInitial, forceTimeFinal
51 +  real(kind = dp) :: globalForceTime
52 +  real(kind = dp) :: maxForceTime
53 +  integer, save :: nloops = 0
54 + #endif
55 +
56   contains
57  
58    subroutine setRlistDF( this_rlist )
# Line 146 | Line 154 | contains
154  
155  
156      if (FF_uses_EAM) then
157 <       call init_EAM_FF(my_status)
157 >         call init_EAM_FF(my_status)
158         if (my_status /= 0) then
159 +          write(*,*) "init_EAM_FF returned a bad status"
160            thisStat = -1
161            return
162         end if
# Line 206 | Line 215 | contains
215      real( kind = DP ) :: pot_local
216      integer :: nrow
217      integer :: ncol
218 +    integer :: nprocs
219   #endif
220      integer :: nlocal
221      integer :: natoms    
# Line 221 | Line 231 | contains
231      integer :: listerror, error
232      integer :: localError
233  
234 <    real(kind=dp) :: listSkin = 1.0
225 <    
234 >    real(kind=dp) :: listSkin = 1.0  
235  
236      !! initialize local variables  
237  
# Line 264 | Line 273 | contains
273      endif
274      
275   #endif
276 +
277 + !! Begin force loop timing:
278 + #ifdef PROFILE
279 +    call cpu_time(forceTimeInitial)
280 +    nloops = nloops + 1
281 + #endif
282    
283      if (FF_RequiresPrepairCalc() .and. SimRequiresPrepairCalc()) then
284         !! See if we need to update neighbor lists
# Line 429 | Line 444 | contains
444   #ifdef IS_MPI
445      
446      if (update_nlist) then
432      
447         !! save current configuration, construct neighbor list,
448         !! and calculate forces
449         call saveNeighborList(nlocal, q)
# Line 495 | Line 509 | contains
509   #else
510      
511      if (update_nlist) then
512 <      
512 >
513         ! save current configuration, contruct neighbor list,
514         ! and calculate forces
515         call saveNeighborList(natoms, q)
# Line 563 | Line 577 | contains
577   #endif
578      
579      ! phew, done with main loop.
580 <    
580 >
581 > !! Do timing
582 > #ifdef PROFILE
583 >    call cpu_time(forceTimeFinal)
584 >    forceTime = forceTime + forceTimeFinal - forceTimeInitial
585 > #endif
586 >
587 >
588   #ifdef IS_MPI
589      !!distribute forces
590    
# Line 677 | Line 698 | contains
698      endif
699  
700   #endif
701 <    
701 >
702 > #ifdef PROFILE
703 >    if (do_pot) then
704 >
705 > #ifdef IS_MPI
706 >
707 >      
708 >       call printCommTime()
709 >
710 >       call mpi_allreduce(forceTime,globalForceTime,1,MPI_DOUBLE_PRECISION, &
711 >            mpi_sum,mpi_comm_world,mpi_err)
712 >
713 >       call mpi_allreduce(forceTime,maxForceTime,1,MPI_DOUBLE_PRECISION, &
714 >            MPI_MAX,mpi_comm_world,mpi_err)
715 >      
716 >       call mpi_comm_size( MPI_COMM_WORLD, nprocs,mpi_err)
717 >      
718 >       if (getMyNode() == 0) then
719 >          write(*,*) "Total processor time spent in force calculations is: ", globalForceTime
720 >          write(*,*) "Total Time spent in force loop per processor is: ", globalforceTime/nprocs
721 >          write(*,*) "Maximum force time on any processor is: ", maxForceTime
722 >       end if
723 > #else
724 >       write(*,*) "Time spent in force loop is: ", forceTime
725 > #endif
726 >
727 >    
728 >    endif
729 >
730 > #endif
731 >
732    end subroutine do_force_loop
733  
734    subroutine do_pair(i, j, rijsq, d, do_pot, do_stress, u_l, A, f, t, pot)
# Line 730 | Line 781 | contains
781         call getElementProperty(atypes, me_j, "is_DP", is_DP_j)
782        
783         if ( is_DP_i .and. is_DP_j ) then
733          
784            call do_dipole_pair(i, j, d, r, rijsq, pot, u_l, f, t, &
785                 do_pot, do_stress)
786            if (FF_uses_RF .and. SimUsesRF()) then
# Line 755 | Line 805 | contains
805  
806      if (FF_uses_GB .and. SimUsesGB()) then
807  
808 +
809         call getElementProperty(atypes, me_i, "is_GB", is_GB_i)
810         call getElementProperty(atypes, me_j, "is_GB", is_GB_j)
811        

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines