Directory CCA/Components/DataArchiver/

Total Files:
3
Deleted Files:
0
Lines of Code:
4513

[root]/CCA/Components/DataArchiver

Lines of Code

CCA/Components/DataArchiver/ Lines of Code

Developers

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

Most Recent Commits

allen 2017-12-21 21:23 Rev.: 57512

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:

  • CCA/Components/DataArchiver: DataArchiver.cc (+3 -17)
ahumphrey 2017-12-19 15:29 Rev.: 57481

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

  • CCA/Components/DataArchiver: sub.mk (+1 -1)
allen 2017-12-15 14:58 Rev.: 57458

fixed typos fro PIDX

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)
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

28 lines of code changed in 3 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+25 -13), DataArchiver.h (new)
allen 2017-12-12 20:26 Rev.: 57433

Cleanup of the Scheduler to use ports for all components

15 lines of code changed in 2 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+12 -12), DataArchiver.h (+3 -3)
allen 2017-12-11 18:25 Rev.: 57426

more cleanup of the recompiling

51 lines of code changed in 2 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+48 -42), DataArchiver.h (+3 -3)
allen 2017-12-11 15:56 Rev.: 57421

merged the needCompile into the ApplicationCommon class, removed the passing of appliction values in the DataArchiver

478 lines of code changed in 2 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+67 -67), DataArchiver.h (+411 -429)
allen 2017-12-11 15:10 Rev.: 57420

removed debug changes

3 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+3 -3)
allen 2017-12-08 19:10 Rev.: 57414

Moved PIDX checks out of the SimCtrl. Cleanup of varnames

832 lines of code changed in 2 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+666 -566), DataArchiver.h (+166 -151)
ahumphrey 2017-11-29 14:29 Rev.: 57373

More cleanup and DebugStream guards.

6 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+6 -4)
ahumphrey 2017-11-29 13:55 Rev.: 57370

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:

  • CCA/Components/DataArchiver: DataArchiver.cc (+141 -91)
harman 2017-11-28 15:48 Rev.: 57358

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:

  • CCA/Components/DataArchiver: DataArchiver.cc (+12 -13), DataArchiver.h (+4 -4)
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

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)
allen 2017-11-22 21:12 Rev.: 57334

additional changes related to the Application Common

43 lines of code changed in 2 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+35 -51), DataArchiver.h (+8 -2)
allen 2017-11-21 15:40 Rev.: 57322

update to move to a application common class and remove the shared state

308 lines of code changed in 2 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+218 -150), DataArchiver.h (+90 -38)
allen 2017-10-25 12:48 Rev.: 57176

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

25 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+25 -25)
harman 2017-10-06 13:49 Rev.: 57093

Removed the stretched grid code.

10 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+10 -27)
harman 2017-09-28 14:40 Rev.: 57042

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:

  • CCA/Components/DataArchiver: DataArchiver.cc (+2 -5)
ahumphrey 2017-08-02 17:23 Rev.: 56838

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

  • CCA/Components/DataArchiver: DataArchiver.cc (+2 -2)
harman 2017-06-29 14:59 Rev.: 56714

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:

  • CCA/Components/DataArchiver: DataArchiver.cc (+23 -24)
ahumphrey 2017-06-23 19:16 Rev.: 56698

More refinement on infrastructure timings.

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)
harman 2017-06-21 16:59 Rev.: 56682

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:

  • CCA/Components/DataArchiver: DataArchiver.cc (+8 -5)
ahumphrey 2017-06-06 14:15 Rev.: 56609

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:

  • CCA/Components/DataArchiver: DataArchiver.cc (+6 -6)
allen 2017-05-31 14:29 Rev.: 56584

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:

  • CCA/Components/DataArchiver: DataArchiver.cc (+60 -1), DataArchiver.h (+3)
allen 2017-05-15 16:38 Rev.: 56531

added finer grained timing for IO and addded Dout to the in-situ

413 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+413 -276)
bisaac 2017-05-15 15:17 Rev.: 56523

Added Proc0 statement when using in-situ vis. This shouldn't impact regression tests.

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)
dav 2017-05-11 17:12 Rev.: 56512


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

  • CCA/Components/DataArchiver: DataArchiver.cc (+77 -21), DataArchiver.h (+15 -6)
allen 2017-04-27 12:01 Rev.: 56492

added check for null dw

3 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+3 -2)
allen 2017-04-26 17:43 Rev.: 56491

wrong location for the offset

2 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+2 -2)
allen 2017-04-26 17:36 Rev.: 56490

added offset back in temporarily

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)
allen 2017-04-26 16:44 Rev.: 56487

removed debug statement

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)
allen 2017-04-26 15:48 Rev.: 56484

clean up of the output / checkpint timing and added a misc timing option

229 lines of code changed in 2 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+216 -173), DataArchiver.h (+13 -17)
allen 2017-04-21 11:22 Rev.: 56469

additional cleanup and sync'ing of wall time usage

42 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+42 -28)
allen 2017-04-20 17:44 Rev.: 56468

reverted timestep check

7 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+7 -2)
allen 2017-04-20 16:43 Rev.: 56467

added comments and fixed start wall time for checkpointing

67 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+67 -51)
jas 2017-04-20 13:30 Rev.: 56464

Update copyright.

3 lines of code changed in 3 files:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1), DataArchiver.h (+1 -1), sub.mk (+1 -1)
allen 2017-04-19 13:14 Rev.: 56448

corrected to the next wall time

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)
allen 2017-04-18 20:37 Rev.: 56444

removed time.h

0 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (-1)
allen 2017-04-18 20:33 Rev.: 56443

changed from time to tmp_time

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)
allen 2017-04-13 16:53 Rev.: 56426

change to SimTime

1 lines of code changed in 1 file:

  • CCA/Components/DataArchiver: DataArchiver.cc (+1 -1)

(5 more)

Generated by StatSVN 0.7.0