Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 212 (100.0%) | 1016 (100.0%) | 4.7 |
dav | 4 (1.9%) | 500 (49.2%) | 125.0 |
ahumphrey | 7 (3.3%) | 217 (21.4%) | 31.0 |
allen | 14 (6.6%) | 191 (18.8%) | 13.6 |
jas | 174 (82.1%) | 94 (9.3%) | 0.5 |
jholmen | 10 (4.7%) | 10 (1.0%) | 1.0 |
guilkey | 2 (0.9%) | 2 (0.2%) | 1.0 |
derekhar | 1 (0.5%) | 2 (0.2%) | 2.0 |
Make VarLabel::m_name private.
0 lines of code changed in 2 files:
VarLabel: DebugStream --> Dout so info is legible when output by multiple threads.
Other cleanup and refactoring.
216 lines of code changed in 3 files:
Particles can now be part of up to three load curves. This is particularly
useful for pressure BCs where pressure might be applied to more than one
face, now corner particles get contributions from both, with the resultant force
as the sum of the two forces from each face's load curve. This will break the
NairnFriction test in the RT.
2 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.
10 lines of code changed in 10 files:
update to move to a application common class and remove the shared state
70 lines of code changed in 6 files:
added support for saving per patch data
70 lines of code changed in 5 files:
changed to cout
1 lines of code changed in 1 file:
Remove use of HashTable.h -- legacy implementation.
1 lines of code changed in 2 files:
fixes for W-cycle and performing on-the-fly analysis
50 lines of code changed in 2 files:
Use C++11 hashmap.
0 lines of code changed in 1 file:
Fix spatial scheduling in Radiometer so we create a single spatial task with a PatchSet like: { {19}, {22}, {25} } (singleton subsets like level->eachPatch()), NOT -> { {19,22,25} }. This is because one proc isn't guaranteed to own all patches in the multi-element subset.
Added Dout versions of printTask and printSchedule to DbgOutput. Now we actually get coherent output when multiple ranks write to stdout.
1 lines of code changed in 2 files:
Update copyright.
93 lines of code changed in 171 files:
Updated absorption property model to be more modular.
The primary motivation of this commit is to progress towards removing dependence on radprops.
Also, this commit cleaned up years of "hacks" aimed at quickly adapting the code to fit the needs of the center.
This commit will change every radiation test, most of which are due to round-off differences.
In some instances, a bug of using inconsistent data-warehouses was also present.
2 lines of code changed in 1 file:
Continuation of commit r56249 - getting into the Core and the UCF now.
Mostly cosmetic changes - removing the actual hack (see Handle.h below) to
allow for better type safety using c++11 nullptr.
These changes have passed the local RT on Baja.
- The biggest update in this commit (the update to remove the c++11 warning hack) is that you will
no longer be able to compare a ProblemSpecP to 0 (you will need to compare to 'nullptr').
- White space, coding standards, indentation, remove tabs.
- Line up some variables to make them easier to read.
- Use of 80+ columns of text (we decided to allow this 10 years ago) and it makes reading longer lines of code on the screen easier.
- Use {} for if/else clauses even if they are only one line long.
- Please put "else" and "else if" on a new line. The added white space makes following the branching much easier.
M CCA/Components/Arches/BoundaryConditions/BoundaryFunctorHelper.cc
M CCA/Components/LoadBalancers/DynamicLoadBalancer.cc
M CCA/Components/LoadBalancers/LoadBalancerCommon.cc
M CCA/Components/LoadBalancers/ParticleLoadBalancer.cc
M CCA/Components/Schedulers/DynamicMPIScheduler.cc
M CCA/Components/Schedulers/MPIScheduler.cc
M CCA/Components/Schedulers/UnifiedScheduler.cc
M CCA/Ports/PIDXOutputContext.cc
M Core/GeometryPiece/GeometryPieceFactory.cc
M Core/Grid/BoundaryConditions/BCDataArray.cc
M Core/Grid/BoundaryConditions/BCDataArray.h
- Pass const strings as references instead of copying.
M Core/Grid/BoundaryConditions/BCUtils.cc
M Core/Grid/BoundaryConditions/BoundCondReader.cc
M Core/Grid/Level.h
M Core/Grid/Level.cc
- Pass const params as const.
- Removed m_patches variables as it isn't used anywhere.
- Very few real changes in this file, use diff -w.
M Core/Grid/Patch.h
M Core/Grid/Patch.cc
- Place .h one line functions on one line as it makes the viewing of the Class spec easier
(and this is the main purpose of the .h file.)
- Line up vars/ for easier reading.
M Core/Grid/Task.cc
M Core/Grid/Variables/ComputeSet.h
- Place .h one line functions on one line as it makes the viewing of the Class spec easier
(and this is the main purpose of the .h file.)
M Core/Grid/Variables/ParticleVariable.h
M Core/Grid/Variables/ParticleVariable_special.cc
M Core/Grid/Variables/Variable.cc
- Fix end comment on readPIDX()
M Core/Util/Handle.h
- Here is the hack that is being removed... The "==" operator was overloaded in order
to allow for comparison of pointers to 0. When this is removed, then (previous to these
commits) you would be spammed by warnings about ambiguous "==" operator. By removing this
operator and forcing the comparison to nullptr (as of c++11), type safety is increased.
500 lines of code changed in 4 files: