From 8c2d38c7e98f5211f15a59c1ec96cddfb716901a Mon Sep 17 00:00:00 2001 From: Stan Moore <stamoor@sandia.gov> Date: Thu, 30 Nov 2017 09:13:03 -0700 Subject: [PATCH] Remove non-existent function in reaxc_forces_omp --- src/USER-OMP/reaxc_forces_omp.cpp | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/src/USER-OMP/reaxc_forces_omp.cpp b/src/USER-OMP/reaxc_forces_omp.cpp index 6fec7a7e4d..321d104b00 100644 --- a/src/USER-OMP/reaxc_forces_omp.cpp +++ b/src/USER-OMP/reaxc_forces_omp.cpp @@ -601,44 +601,17 @@ void Compute_ForcesOMP( reax_system *system, control_params *control, MPI_Comm comm = mpi_data->world; // Init Forces -#if defined(LOG_PERFORMANCE) - double t_start = 0; - if( system->my_rank == MASTER_NODE ) - t_start = Get_Time( ); -#endif - Init_Forces_noQEq_OMP( system, control, data, workspace, - lists, out_control, comm ); - -#if defined(LOG_PERFORMANCE) - //MPI_Barrier( comm ); - if( system->my_rank == MASTER_NODE ) - Update_Timing_Info( &t_start, &(data->timing.init_forces) ); -#endif + lists, out_control, comm ); // Bonded Interactions Compute_Bonded_ForcesOMP( system, control, data, workspace, lists, out_control, mpi_data->world ); -#if defined(LOG_PERFORMANCE) - if( system->my_rank == MASTER_NODE ) - Update_Timing_Info( &t_start, &(data->timing.bonded) ); -#endif - // Nonbonded Interactions Compute_NonBonded_ForcesOMP( system, control, data, workspace, lists, out_control, mpi_data->world ); -#if defined(LOG_PERFORMANCE) - if( system->my_rank == MASTER_NODE ) - Update_Timing_Info( &t_start, &(data->timing.nonb) ); -#endif - // Total Force Compute_Total_ForceOMP( system, control, data, workspace, lists, mpi_data ); - -#if defined(LOG_PERFORMANCE) - if( system->my_rank == MASTER_NODE ) - Update_Timing_Info( &t_start, &(data->timing.bonded) ); -#endif } -- GitLab