[root]/Core/Util
Timers
(1 files, 328 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 104 (100.0%) | 603 (100.0%) | 5.7 |
ahumphrey | 16 (15.4%) | 216 (35.8%) | 13.5 |
allen | 12 (11.5%) | 189 (31.3%) | 15.7 |
dav | 3 (2.9%) | 144 (23.9%) | 48.0 |
jas | 66 (63.5%) | 38 (6.3%) | 0.5 |
guilkey | 3 (2.9%) | 10 (1.7%) | 3.3 |
harman | 1 (1.0%) | 4 (0.7%) | 4.0 |
jthornoc | 2 (1.9%) | 1 (0.2%) | 0.5 |
bpeterson | 1 (1.0%) | 1 (0.2%) | 1.0 |
VarLabel: DebugStream --> Dout so info is legible when output by multiple threads.
Other cleanup and refactoring.
59 lines of code changed in 2 files:
* Finish repairs and cleanup in Core/Malloc, specifically the Uintah default Allocator (when SCI_MALLOC is enabled). Remove legacy pthread code, recursive locks, etc. Use std::mutex, no need for recursive mutex.
* Remove sci_system, use std:system
* Remove all remaining pthread remnants (including THREAD_LIBRARY references). Only use and rely on std::thread. Should have never been mixing pthreads with std::thread. Can't bank on what the underlying thread impl is.
* Generate new configure script.
* Lastly, fix issue with MPM PetscSolver include. Now Uintah compiles without Petsc (e.g. --without-petsc), as it should be able to.
67 lines of code changed in 10 files:
Dav and I chatted about this. Ubuntu 17 has issues when compiling this file, which we think is caused by a bug in 2.26. Our "fix" for now is just to put a comment in that file giving the user an alternative edit that will get Uintah to compile. A future fix would be an additional #ifdef check to make this automatic
1 lines of code changed in 1 file:
* Added a equation class to the equation groups to help manage the different scalar types (mixture fraction, DQMOM, etc…)
* Minor spacing, tabs, etc…
* Added an include in Endian.h as I had a couple compilers not being able to identify the IntVector type.
1 lines of code changed in 2 files:
Add IntVector to the variables that have a swapbytes defined. Also added a
comment directing the next person to edit testEndian.h.in to get changes to
Endian.h. Thanks to Dav and Biswajit for their help.
10 lines of code changed in 3 files:
added processor node identification to the proc group, also cleaned up method names
177 lines of code changed in 1 file:
added specified z library
1 lines of code changed in 1 file:
removed the active status from the name, because it can change, also the semi-colon messes up the parsing for the in-situ
0 lines of code changed in 2 files:
Fix name shadowing issue in DOUT variadic macro.
23 lines of code changed in 1 file:
Revert DOUT.hpp to original, nearly pristine state.
Recommendation is to use explicit operator bool() for checking active state, but left active method in with coments.
Some other minor cleanup.
12 lines of code changed in 1 file:
Grid::printStatistics()
- added debug stream (GRID) that output patch extents
environmentalFlags.txt
- additional entries and organization.
DOUT.hpp
- fixed a bug, the first SCI_DEBUG name listed is properly read and processed.
4 lines of code changed in 1 file:
More refinement and fixes for infrastructure timings.
Other misc cleanup.
23 lines of code changed in 1 file:
removed the colon and active bit to where it is really needed
2 lines of code changed in 1 file:
type change tounsigned
4 lines of code changed in 1 file:
added get/set methods for the active state
2 lines of code changed in 1 file:
added check for empty stats
3 lines of code changed in 1 file:
* Significant cleanup for RuntimeStats usage. Correspondingly, this cleans up the execute() methods for all schedulers.
* Consolidate Dout objects in RuntimeStats class - MPIStats, WaitTimes, and coopted ExecTimes SCI_DEBUG env vars now all work well. Note that MPIStats makes use of the individual timers for each MPI call in UintahMPI.h. This is the most accurate, per-MPI-call info we can get, e.g. Count, Time and number of messages for several message size categories.
* runTask() methods in MPIScheduler and UnifiedScheduler now feed the loadblancer contribution and exectimes map the same values (task execution time from beginning of doit() to end of done() ), computed by the DetailedTasks themselves.
* Removed more usage of usingMPI() condition. This method will ultimately be removed as it is meaningless now, because Uintah is always "usingMPI", meaning for even 1 MPI proc runs, Uintah inits the MPI runtime.
* Updated environmentalFlags.txt to reflect new offerings from RuntimeStats class.
32 lines of code changed in 1 file:
Update copyright.
38 lines of code changed in 66 files:
removed needless incude of time.h
0 lines of code changed in 1 file:
Removed Time.h and replaced with Timers.hpp
0 lines of code changed in 3 files:
Todd asked that the SCI_DEBUG name be treated in a case-insensitive manner...
So now you can do:
setenv SCI_DEBUG my_debug_stream:+
or
setenv SCI_DEBUG MY_DEBUG_STREAM:+
or
setenv SCI_DEBUG my_DEBUG_stream:+
and they will all work and refer to the same thing.
M Core/Util/DebugStream.h
M Core/Util/DebugStream.cc
- Fixed formatting, naming conventions, spacing, etc.
125 lines of code changed in 2 files:
Continuation of commit r56249 - getting into the Core and the UCF now.
Mostly cosmetic changes - removing the actual hack (see Handle.h below) to
allow for better type safety using c++11 nullptr.
These changes have passed the local RT on Baja.
- The biggest update in this commit (the update to remove the c++11 warning hack) is that you will
no longer be able to compare a ProblemSpecP to 0 (you will need to compare to 'nullptr').
- White space, coding standards, indentation, remove tabs.
- Line up some variables to make them easier to read.
- Use of 80+ columns of text (we decided to allow this 10 years ago) and it makes reading longer lines of code on the screen easier.
- Use {} for if/else clauses even if they are only one line long.
- Please put "else" and "else if" on a new line. The added white space makes following the branching much easier.
M CCA/Components/Arches/BoundaryConditions/BoundaryFunctorHelper.cc
M CCA/Components/LoadBalancers/DynamicLoadBalancer.cc
M CCA/Components/LoadBalancers/LoadBalancerCommon.cc
M CCA/Components/LoadBalancers/ParticleLoadBalancer.cc
M CCA/Components/Schedulers/DynamicMPIScheduler.cc
M CCA/Components/Schedulers/MPIScheduler.cc
M CCA/Components/Schedulers/UnifiedScheduler.cc
M CCA/Ports/PIDXOutputContext.cc
M Core/GeometryPiece/GeometryPieceFactory.cc
M Core/Grid/BoundaryConditions/BCDataArray.cc
M Core/Grid/BoundaryConditions/BCDataArray.h
- Pass const strings as references instead of copying.
M Core/Grid/BoundaryConditions/BCUtils.cc
M Core/Grid/BoundaryConditions/BoundCondReader.cc
M Core/Grid/Level.h
M Core/Grid/Level.cc
- Pass const params as const.
- Removed m_patches variables as it isn't used anywhere.
- Very few real changes in this file, use diff -w.
M Core/Grid/Patch.h
M Core/Grid/Patch.cc
- Place .h one line functions on one line as it makes the viewing of the Class spec easier
(and this is the main purpose of the .h file.)
- Line up vars/ for easier reading.
M Core/Grid/Task.cc
M Core/Grid/Variables/ComputeSet.h
- Place .h one line functions on one line as it makes the viewing of the Class spec easier
(and this is the main purpose of the .h file.)
M Core/Grid/Variables/ParticleVariable.h
M Core/Grid/Variables/ParticleVariable_special.cc
M Core/Grid/Variables/Variable.cc
- Fix end comment on readPIDX()
M Core/Util/Handle.h
- Here is the hack that is being removed... The "==" operator was overloaded in order
to allow for comparison of pointers to 0. When this is removed, then (previous to these
commits) you would be spammed by warnings about ambiguous "==" operator. By removing this
operator and forcing the comparison to nullptr (as of c++11), type safety is increased.
19 lines of code changed in 1 file: