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 |
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:
Cleanup of the Scheduler to use ports for all components
9 lines of code changed in 3 files:
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:
queryGlobals()
- added missing mutex unlock before returning.
1 lines of code changed in 1 file:
added support for saving per patch data
2 lines of code changed in 1 file:
added processor node identification to the proc group, also cleaned up method names
1 lines of code changed in 1 file:
Fix some of the comparison between signed and unsigned integer expressions warnings.
1 lines of code changed in 1 file:
Remove use of HashTable.h -- legacy implementation.
3 lines of code changed in 1 file:
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:
- 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:
Update copyright.
3 lines of code changed in 3 files:
Removed Time.h and replaced with Timers.hpp
59 lines of code changed in 2 files:
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: