[root]/CCA/Components/DataArchiver
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 62 (100.0%) | 3082 (100.0%) | 49.7 |
allen | 40 (64.5%) | 2731 (88.6%) | 68.2 |
ahumphrey | 7 (11.3%) | 157 (5.1%) | 22.4 |
dav | 5 (8.1%) | 131 (4.3%) | 26.2 |
harman | 6 (9.7%) | 59 (1.9%) | 9.8 |
jas | 3 (4.8%) | 3 (0.1%) | 1.0 |
bisaac | 1 (1.6%) | 1 (0.0%) | 1.0 |
added second interface computeTaskGraphIndex to remove need for shared shate call, renamed recomputeTimeStep to recomputeDelT for a more accurate call
3 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.
1 lines of code changed in 2 files:
fixed typos fro PIDX
1 lines of code changed in 1 file:
added a SolverCommon class, made OnTheFlyAnalysis a first class UintahParallelComponent, added acess methods for component controll in UintahParallelComponent
28 lines of code changed in 3 files:
Cleanup of the Scheduler to use ports for all components
15 lines of code changed in 2 files:
more cleanup of the recompiling
51 lines of code changed in 2 files:
merged the needCompile into the ApplicationCommon class, removed the passing of appliction values in the DataArchiver
478 lines of code changed in 2 files:
removed debug changes
3 lines of code changed in 1 file:
Moved PIDX checks out of the SimCtrl. Cleanup of varnames
832 lines of code changed in 2 files:
More cleanup and DebugStream guards.
6 lines of code changed in 1 file:
Guard the DataArchiver DebugStream (check if dbg.active()). This is causing issues when not active on mira. DebugStreams need to go away in favor of much simpler Dout, as DebugStreams unnecessarily inherit from the standard library (std::ostream) and are unduley compicated for basic debug output.
Also cleaned up poor whitespace, linebreaks and indentation, other formatting. Seems like someone went through the infrastructure with a faulty code formatter previously...
141 lines of code changed in 1 file:
Global:
- Renamed the component and variables associated with reduceUda -> PostProcessUda
PostProcessUda.cc/h:
- cleaned out testing code
- added a common class
16 lines of code changed in 2 files:
removed the delta T label from the shared state and began removing the shared state where possible
1 lines of code changed in 1 file:
additional changes related to the Application Common
43 lines of code changed in 2 files:
update to move to a application common class and remove the shared state
308 lines of code changed in 2 files:
added processor node identification to the proc group, also cleaned up method names
25 lines of code changed in 1 file:
Removed the stretched grid code.
10 lines of code changed in 1 file:
No longer saving the flag isNonCubic to udas. That flag is now set whenever a level is finalized.
If the volume of a level's bounding box != sum(patch volumes) then a level is nonCubic.
Level.cc
computeVariableExtents(): added particle type and fixed NCVariable extents.
Ups files: added <Grid doAMR= "true"> to files where it was missing.
removed <nonCubid_domain>
Ray.cc: diabled isnan bulletproofing. Something isn't working correctly and nans are being detected.
** You need to run make reallyclean before compiling.
2 lines of code changed in 1 file:
* Clean up several race conditions, true positives reported by TSAN.
* Catch exceptions by ref (should probably catch by const ref)
* Also clear out some compiler warnings, etc.
2 lines of code changed in 1 file:
initCheckpoints()
- dependencies that require patches from the fine or coarse levels are now properly
checkpointed with the patchSubset from appropriate level. For example:
tsk->requires( old_dw, variable, 0, Task::FineLevel, 0, Task::NormalDomain, d_gn, 0 );
^^^^^^^^^^^^^^^
- unwrapped 80 some of the 80 column lines
- spaces
23 lines of code changed in 1 file:
More refinement on infrastructure timings.
1 lines of code changed in 1 file:
OnDemandDataWarehouse::getRegionModifiable()
- General code clean up, code simplification.
- An exception is thrown if the nCopiedCells != nRequestedCells. Previously, the exception was never
thrown.
Level.*
getTotalCellsInRegion()
- fixed logic for computing cellsInRegion.
Added member variable isNonCubicDomain to identify when a level isn't cubic.
Grid/DataArchiver
- Added nonCubic to the variables that are checkpointed by a level.
8 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.
6 lines of code changed in 1 file:
to to record vars changes with the insitu I added an output and restart problem spec restart to the archiver. As a side affect I compartmentalized the setup in the sim controller
63 lines of code changed in 2 files:
added finer grained timing for IO and addded Dout to the in-situ
413 lines of code changed in 1 file:
Added Proc0 statement when using in-situ vis. This shouldn't impact regression tests.
1 lines of code changed in 1 file:
- Fixes by Sid (with some help from Dav)
* Update to create individual MPI_Comms for use by PIDX.
* Update to newest PIDX API.
* Minor formatting, variable alignment for readability. Remove tabs.
* Pass strings as const references (&) to avoid copy.
M CCA/Components/DataArchiver/DataArchiver.cc
M CCA/Components/DataArchiver/DataArchiver.h
M CCA/Components/SimulationController/AMRSimulationController.cc
M CCA/Ports/PIDXOutputContext.cc
M CCA/Ports/PIDXOutputContext.h
M Core/DataArchive/DataArchive.cc
M Core/DataArchive/sub.mk
92 lines of code changed in 2 files:
added check for null dw
3 lines of code changed in 1 file:
wrong location for the offset
2 lines of code changed in 1 file:
added offset back in temporarily
1 lines of code changed in 1 file:
removed debug statement
1 lines of code changed in 1 file:
clean up of the output / checkpint timing and added a misc timing option
229 lines of code changed in 2 files:
additional cleanup and sync'ing of wall time usage
42 lines of code changed in 1 file:
reverted timestep check
7 lines of code changed in 1 file:
added comments and fixed start wall time for checkpointing
67 lines of code changed in 1 file:
Update copyright.
3 lines of code changed in 3 files:
corrected to the next wall time
1 lines of code changed in 1 file:
removed time.h
0 lines of code changed in 1 file:
changed from time to tmp_time
1 lines of code changed in 1 file:
change to SimTime
1 lines of code changed in 1 file:
(5 more)