Directory CCA/Components/Solvers/

Total Files:
13
Deleted Files:
0
Lines of Code:
3728

[root]/CCA/Components/Solvers
                directory in repo AMR (10 files, 2865 lines)
                    directory in repo HyprePreconds (13 files, 1181 lines)
                    directory in repo HypreSolvers (19 files, 1993 lines)

Lines of Code

CCA/Components/Solvers/ Lines of Code

Developers

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

Most Recent Commits

allen 2017-12-21 14:50 Rev.: 57506

standardized the error output for the factories

0 lines of code changed in 2 files:

  • CCA/Components/Solvers: SolverFactory.cc (new)
jholmen 2017-12-14 18:52 Rev.: 57451

* Updated to std::ostringstream for Hypre-less builds.

3 lines of code changed in 1 file:

  • CCA/Components/Solvers: SolverFactory.cc (+3 -3)
allen 2017-12-14 16:26 Rev.: 57449

minor interface clean up and have it report the solver created in the factory

20 lines of code changed in 3 files:

  • CCA/Components/Solvers: SolverFactory.cc (+19 -21), SolverFactory.h (new)
allen 2017-12-13 18:22 Rev.: 57440

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:

  • CCA/Components/Solvers: CGSolver.cc (new), CGSolver.h (+5 -8), DirectSolve.cc (new), DirectSolve.h (+32 -35), HypreSolver.cc (+3 -3), HypreSolver.h (+2 -5), SolverCommon.cc (new 39), SolverCommon.h (new 73), SolverFactory.cc (+1 -1), sub.mk (+5 -4)
allen 2017-12-12 20:26 Rev.: 57433

Cleanup of the Scheduler to use ports for all components

4 lines of code changed in 2 files:

  • CCA/Components/Solvers: CGSolver.cc (+2 -2), HypreSolver.cc (+2 -2)
allen 2017-11-24 15:37 Rev.: 57339

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:

  • CCA/Components/Solvers: CGSolver.cc (+1 -1), CGSolver.h (+3 -3), DirectSolve.cc (+2 -11), DirectSolve.h (+2 -5), HypreSolver.cc (+151 -112), HypreSolver.h (+20 -18), SolverFactory.h (+3 -1)
allen 2017-11-22 21:12 Rev.: 57334

additional changes related to the Application Common

6 lines of code changed in 3 files:

  • CCA/Components/Solvers: CGSolver.h (+2), DirectSolve.h (+2), HypreSolver.h (+2)
allen 2017-10-25 12:48 Rev.: 57176

added processor node identification to the proc group, also cleaned up method names

4 lines of code changed in 3 files:

  • CCA/Components/Solvers: CGSolver.cc (+1 -1), DirectSolve.cc (+1 -1), HypreSolver.cc (+2 -2)
jas 2017-09-21 14:26 Rev.: 57022

Replace deprecated finite with isfinite()

1 lines of code changed in 1 file:

  • CCA/Components/Solvers: HypreSolver.cc (+1 -1)
ahumphrey 2017-04-25 22:40 Rev.: 56480

* 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:

  • CCA/Components/Solvers: SolverFactory.cc (-5)
jas 2017-04-20 13:28 Rev.: 56458

Update copyright.

11 lines of code changed in 13 files:

  • CCA/Components/Solvers: CGSolver.cc (+1 -1), CGSolver.h (+1 -1), DirectSolve.cc (+1 -1), DirectSolve.h (+1 -1), HypreSolver.cc (+1 -1), HypreSolver.h (+1 -1), HypreTypes.h (+1 -1), MatrixUtil.h (+1 -1), SolverFactory.cc (+1 -1), SolverFactory.h (+1 -1), sub.mk (+1 -1)
allen 2017-04-13 16:24 Rev.: 56421

Removed Time.h and replaced with Timers.hpp

34 lines of code changed in 3 files:

  • CCA/Components/Solvers: CGSolver.cc (+6 -3), DirectSolve.cc (+5 -3), HypreSolver.cc (+23 -12)
dav 2017-02-26 16:05 Rev.: 56252

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:

  • CCA/Components/Solvers: CGSolver.cc (+3 -4), HypreSolver.cc (+7 -6)
Generated by StatSVN 0.7.0