Directory Core/DataArchive/

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

[root]/Core/DataArchive

Lines of Code

Core/DataArchive/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 23 (100.0%) 149 (100.0%) 6.4
allen 7 (30.4%) 71 (47.7%) 10.1
dav 6 (26.1%) 55 (36.9%) 9.1
harman 5 (21.7%) 16 (10.7%) 3.2
jas 5 (21.7%) 7 (4.7%) 1.4

Most Recent Commits

harman 2017-12-13 12:52 Rev.: 57436

Global:
changed global variable names to be more descriptive.

Add proc0patch0cout() class which prints message on proc 0, patch 0 and
only n times per timesteps.

bug fixes to populate the old_dw with variables from user specified timestep

0 lines of code changed in 2 files:

  • Core/DataArchive: DataArchive.cc (new)
allen 2017-12-12 20:27 Rev.: 57434

Cleanup of the Scheduler to use ports for all components

9 lines of code changed in 3 files:

  • Core/DataArchive: DataArchive.cc (+2 -2), DataArchive.h (new)
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

15 lines of code changed in 2 files:

  • Core/DataArchive: DataArchive.cc (+8 -8), DataArchive.h (+7 -7)
harman 2017-11-15 16:24 Rev.: 57302

queryGlobals()
- added missing mutex unlock before returning.


1 lines of code changed in 1 file:

  • Core/DataArchive: DataArchive.cc (+1)
allen 2017-11-07 13:36 Rev.: 57243

added support for saving per patch data

2 lines of code changed in 1 file:

  • Core/DataArchive: DataArchive.cc (+2)
allen 2017-10-25 12:48 Rev.: 57176

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

1 lines of code changed in 1 file:

  • Core/DataArchive: DataArchive.cc (+1 -1)
jas 2017-10-24 12:37 Rev.: 57171

Fix some of the comparison between signed and unsigned integer expressions warnings.

1 lines of code changed in 1 file:

  • Core/DataArchive: DataArchive.cc (+1 -1)
jas 2017-09-28 11:20 Rev.: 57041

Remove use of HashTable.h -- legacy implementation.

3 lines of code changed in 1 file:

  • Core/DataArchive: DataArchive.h (+3 -3)
dav 2017-05-16 17:21 Rev.: 56541



Previously we used a VarHashMap to keep track on our variables and
where they were located in the DataArchive (UDA) files on
disk. However, as it was a hash map, there was no prescribed order to
how the variables were stored in that map. When using PIDX, the
variables must be read and written in exactly the same order. To
solve this problem, instead of hashing, I have just created a vector
to hold this data. The change is fairly straightforward, and Todd and
Sid have tested this, and my own local RT over ICE works, so I am
fairly certaint that this will not break the RT.

However, I have not analyzed how often this code is actually called
during a simulation and there could be some performance issues.
Though I don't think this should be the case, I am leaving this note
in the commit log in case someone sees an issue in the future
hopefully it will make it easier to track down. The performance issue
would come from the fact that instead of pulling a variable directly
out of the hash map [O(1)], we now have to search the vector [O(n)]
for it. If this is shown to be an issue, we will need to rethink how
to solve the two issues (savinging in a defined order - while not
having to linearly search the vector). -Dav


39 lines of code changed in 2 files:

  • Core/DataArchive: DataArchive.cc (+35 -23), DataArchive.h (+4 -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

13 lines of code changed in 3 files:

  • Core/DataArchive: DataArchive.cc (+8 -7), sub.mk (+5)
jas 2017-04-20 13:18 Rev.: 56452

Update copyright.

3 lines of code changed in 3 files:

  • Core/DataArchive: DataArchive.cc (+1 -1), DataArchive.h (+1 -1), sub.mk (+1 -1)
allen 2017-04-13 16:24 Rev.: 56421

Removed Time.h and replaced with Timers.hpp

59 lines of code changed in 2 files:

  • Core/DataArchive: DataArchive.cc (+49 -19), DataArchive.h (+10 -6)
dav 2017-02-27 14:19 Rev.: 56255


Continuation of commit r56249 - fixes to get the Mac (pedantic compiler) back to working.

Forcing the comparison of pointers to nullptr instead of 0 to help with type safety.

A few cosmetic fixes including some of: Using 80+ columns, coding standards, if{}, indentation.

M CCA/Components/MPM/ReactionDiffusion/DiffusionModels/NonLinearDiff1.cc
M CCA/Components/Wasatch/ReductionHelper.cc
M CCA/Components/Wasatch/Properties.cc
M CCA/Components/Wasatch/FieldClippingTools.h
M CCA/Components/Wasatch/Wasatch.cc
M CCA/Components/Wasatch/ParseTools.cc
M CCA/Components/Wasatch/Expressions/EmbeddedGeometry/EmbeddedGeometryHelper.cc
M CCA/Components/Wasatch/WasatchParticlesHelper.cc
M CCA/Components/DataArchiver/DataArchiver.cc
M CCA/Components/Schedulers/DetailedTasks.cc
M CCA/Components/Schedulers/SchedulerCommon.cc
M Core/Grid/Grid.cc
M Core/DataArchive/DataArchive.cc
M StandAlone/tools/pfs/rawToUniqueGrains.cc
M StandAlone/tools/pfs/pfs.cc
M StandAlone/tools/pfs/pfs2.cc
M StandAlone/tools/fsspeed/fsspeed.cc
M StandAlone/tools/graphview/GV_TaskGraph.cc
M StandAlone/tools/compare_mms/compare_mms.cc
M StandAlone/slb.cc

3 lines of code changed in 1 file:

  • Core/DataArchive: DataArchive.cc (+3 -3)
Generated by StatSVN 0.7.0