[root]/CCA/Components/Examples
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 198 (100.0%) | 1739 (100.0%) | 8.7 |
cgritton | 15 (7.6%) | 951 (54.7%) | 63.4 |
allen | 120 (60.6%) | 547 (31.5%) | 4.5 |
ahumphrey | 12 (6.1%) | 142 (8.2%) | 11.8 |
harman | 2 (1.0%) | 51 (2.9%) | 25.5 |
jas | 48 (24.2%) | 46 (2.6%) | 0.9 |
jholmen | 1 (0.5%) | 2 (0.1%) | 2.0 |
removed unneeded header files
0 lines of code changed in 6 files:
added second interface computeTaskGraphIndex to remove need for shared shate call, renamed recomputeTimeStep to recomputeDelT for a more accurate call
4 lines of code changed in 4 files:
added a SolverCommon class, made OnTheFlyAnalysis a first class UintahParallelComponent, added acess methods for component controll in UintahParallelComponent
1 lines of code changed in 1 file:
Cleanup of the Scheduler to use ports for all components
9 lines of code changed in 8 files:
made the ApplicationInterface purely virtual and cleaned up naming
4 lines of code changed in 1 file:
Remove PoissonGPU1 example component.
1 lines of code changed in 5 files:
changed sharedState to m_sharedState
13 lines of code changed in 3 files:
removed the delta T label from the shared state and began removing the shared state where possible
42 lines of code changed in 26 files:
additional changes related to the Application Common
5 lines of code changed in 2 files:
* Added build system support for Kokkos.
* Added /src/include/sci_defs/kokkos_testdefs.h.in.
This commit allows --with-kokkos=DIR to be used to point to a Kokkos installation instead of CXXFLAGS and LDFLAGS.
Note, files using #define UINTAH_ENABLE_KOKKOS must now add #include <sci_defs/kokkos_defs.h> to manage this macro.
2 lines of code changed in 1 file:
update to move to a application common class and remove the shared state
457 lines of code changed in 60 files:
added processor node identification to the proc group, also cleaned up method names
12 lines of code changed in 9 files:
Fix some of the comparison between signed and unsigned integer expressions warnings.
5 lines of code changed in 3 files:
Added a global map for keeping track of which dw the abskg resides in.
// For RMCRT algorithms the absorption coefficient can be required from either the old_dw or
// new_dw depending on if RMCRT:float is specified. On coarse levels abskg _always_ resides
// in the newDW. If RMCRT:float is used then abskg on the fine level resides in the new_dw.
This will change then number of checkpoints and the answers in ARCHES:RMCRT:multibox tests.
1 lines of code changed in 1 file:
Updates to the heat equation example and added an AMR version. The AMR version is still in progress.
306 lines of code changed in 5 files:
Fix builds without Hypre enabled - e.g. componentless build, etc.
SolverTest2 directly included Hypre headers no matter what.
4 lines of code changed in 1 file:
Fixed issues with boundary conditions for heat example
26 lines of code changed in 1 file:
Added to new examples components to for developing Hypre IJ interface and AMR. Currenlty these components are barebones examples that will be iterated upon.
619 lines of code changed in 9 files:
Cleanup DOUT-based debugging output for RMCRT-related classes. Still having issues with use of DOUT in DbgOutput::print* methods. Working on it.
For those who are wondering, below is my spiel on Dout (class) and DOUT (variadic macro), why DebugStream is not a great idea in our world today, and perhaps some motivation to move in this direction should you actually want coherent, lock-free output by multiple threads or MPI ranks. Dout simply co-opts the SCI_DEBUG env var and does not effect DebugStream.
// ------------------------------------------------------------------------------------------------
// Dout (class) versions of the above (moving away from DebugStream)
//
// Dout is an extremely lightweight way to provide the same functionality as DebugStream,
// but in a fully lock-free way for both multiple threads and MPI ranks. Dout also does not
// inherit from from the standard library (std::ostream specifically) as DebugStream does.
// The DOUT variadic macro is then used, which is printf-based. By the POSIX standard, printf
// must "behave" like it acquired a lock. The Dout class also defines an explicit bool() operator
// for checking state, e.g. active or inactive.
// ------------------------------------------------------------------------------------------------
12 lines of code changed in 1 file:
RMCRT:
- abskg_dw is now a global map with the level index as the key. The component can specify
using the old/new_dw for on finest level. Abskg is always pulled from the new_dw on coarser levels.
Arches/SourceTerms/RMCRT.cc:
global - changed level->getID to level->getIndex()
No longer specifying abskg_dw when scheduling tasks, it's handled via the global vector.
Arches now uses abskg from the old_dw.
Input files:
added <stage = 0> tags.
The Arches RMCRT tests will fail, since the number of checkpoint variables increased by 1.
50 lines of code changed in 1 file:
Fully generalize temporal scheduling.
This is very component driven now and through one additional SimulationInterface virtual function ( virtual int computeTaskGraphIndex() ), task graph index (e.g. rad_calc_freq modulo) can be computed in a component-specific way. SimController now calls computeTaskGraphIndex() on the sim object and passes this to executeTimestep. This method is not pure virtual, and maintains backward compatibility for components not using temporal scheduling.
Note, this may have broken a few Arches restart tests, however I've spoken to Derek about this and we will remedy ASAP. This is due to how Arches is now finding rad_calc_freq outside of it's RMCRT object.
31 lines of code changed in 2 files:
Call setRestartInitTimestep( false ) for single-level regridder case prior to 2nd scheduler->init call (this is a special case). This allows the arches-regrid test to work correctly with temporal scheduling and >1 primary task graphs.
Some other cleanup, spell checking and basic formatting while under the hood.
2 lines of code changed in 1 file:
Reintegration of incite_dev branch. Improvements/Features/Optimizations include (but not limited too):
1.) Temporal scheduling, e.g. support for multiple primary task graphs (not w-cycle)
2.) Significantly improved task graph compilation times for multi-level RMCRT at large core/patch counts
3.) GPU super patch support
4.) Highly optimized RMCRT GPU kernels
5.) Significant reduction in infrastructure memory footprint
ARCHES: methane_rmcrt test is broken due to issues with trunk code. Good luck Todd, let us know if you need another set of eyes.
WASATCH: RMCRT-Burns-Christon UDA comparison fails as the trunk input file specifies an unused variable to store. Branch code has fixed this.
-"compare_uda -ignoreVariable "VRFlux" rmcrt-burns-christon.uda.trunk rmcrt-burns-christon.uda.branch" compares exactly.
-just need to remove <save label="VRFlux"/> from original input and regenerate GS for this test.
Please let us know if anyone sees any residual issues with this commit. We are standing by to deal with any fallout.
92 lines of code changed in 2 files:
Update copyright.
41 lines of code changed in 45 files: