[root]/CCA/Components/Solvers
AMR
(10 files, 2865 lines)
HyprePreconds
(13 files, 1181 lines)
HypreSolvers
(19 files, 1993 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 58 (100.0%) | 441 (100.0%) | 7.6 |
allen | 40 (69.0%) | 416 (94.3%) | 10.4 |
jas | 14 (24.1%) | 12 (2.7%) | 0.8 |
dav | 2 (3.4%) | 10 (2.3%) | 5.0 |
jholmen | 1 (1.7%) | 3 (0.7%) | 3.0 |
ahumphrey | 1 (1.7%) | 0 (0.0%) | 0.0 |
standardized the error output for the factories
0 lines of code changed in 2 files:
* Updated to std::ostringstream for Hypre-less builds.
3 lines of code changed in 1 file:
minor interface clean up and have it report the solver created in the factory
20 lines of code changed in 3 files:
added a SolverCommon class, made OnTheFlyAnalysis a first class UintahParallelComponent, added acess methods for component controll in UintahParallelComponent
166 lines of code changed in 17 files:
Cleanup of the Scheduler to use ports for all components
4 lines of code changed in 2 files:
removed the delta T label from the shared state and began removing the shared state where possible
182 lines of code changed in 7 files:
additional changes related to the Application Common
6 lines of code changed in 3 files:
added processor node identification to the proc group, also cleaned up method names
4 lines of code changed in 3 files:
Replace deprecated finite with isfinite()
1 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.
0 lines of code changed in 1 file:
Update copyright.
11 lines of code changed in 13 files:
Removed Time.h and replaced with Timers.hpp
34 lines of code changed in 3 files:
Continuation of commit r56249 - this time for some various files.
Mostly cosmetic changes, and preparing for removing a hacked out warning when we moved to C++ 11.
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/DataArchiver/DataArchiver.h
M CCA/Components/Parent/Switcher.cc
- Remove the outputPS() function as it appears to be dead code (was commented out).
M CCA/Components/Parent/Switcher.h
M CCA/Components/ProblemSpecification/ProblemSpecReader.cc
- More verbose error message.
M CCA/Components/ReduceUda/UdaReducer.cc
M CCA/Components/Solvers/AMR/AMRSolver.cc
M CCA/Components/Solvers/CGSolver.cc
M CCA/Components/Solvers/HypreSolver.cc
M Core/ProblemSpec/ProblemSpec.cc
M R_Tester/helpers/runSusTests.py
M R_Tester/toplevel/generateGoldStandards.py
- Remove the SCI_SIGNALMODE env flag that was being passed to the tester. As far as I can tell, SCI_SIGNALMODE
was removed from Uintah a long time ago when we cut out a lot of SCIRun stuff. Also, in a bizarre twist,
adding "-x SCI_SIGNALMODE" (or in fact, any "-x " var that is over 8 characters long) causes the answers
to a few tests (eg: methane_fire_8patch_petscrad) to fail exact comparison (at e-15 or so).
10 lines of code changed in 2 files: