[root]/Core/Grid
BoundaryConditions
(31 files, 6268 lines)
PatchBVH
(9 files, 821 lines)
Variables
(94 files, 13597 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 257 (100.0%) | 2212 (100.0%) | 8.6 |
ahumphrey | 48 (18.7%) | 878 (39.7%) | 18.2 |
harman | 39 (15.2%) | 464 (21.0%) | 11.8 |
dav | 6 (2.3%) | 387 (17.5%) | 64.5 |
allen | 41 (16.0%) | 370 (16.7%) | 9.0 |
jas | 112 (43.6%) | 71 (3.2%) | 0.6 |
derekhar | 5 (1.9%) | 30 (1.4%) | 6.0 |
bpeterson | 3 (1.2%) | 7 (0.3%) | 2.3 |
guilkey | 2 (0.8%) | 4 (0.2%) | 2.0 |
jbhooper | 1 (0.4%) | 1 (0.0%) | 1.0 |
reordered checks so not duplicated
0 lines of code changed in 2 files:
Broke the large libs into smaller libraries allowing of the removal the ModelFactory Component and moved all application code from core
2 lines of code changed in 2 files:
Beginnings MALLOC_TRACE support removal, e.g. MALLOC_TRACE_TAG_SCOPE and other macros.
This library, though once useful, no longer works with Uintah and is not maintained, plus inextricably tied to SCI_MALLOC, which ultimately needs to go away.
0 lines of code changed in 4 files:
Cleanup of the Scheduler to use ports for all components
6 lines of code changed in 7 files:
removed the delta T label from the shared state and began removing the shared state where possible
1 lines of code changed in 4 files:
Added support for 1-sided ghosts and invoking their use in Arches-sweeps. This results in a 12-25% speed-up of the sweeping algorithm, depending on scale.
30 lines of code changed in 5 files:
update to move to a application common class and remove the shared state
124 lines of code changed in 6 files:
cleanup to remove local var and method with the same name
20 lines of code changed in 1 file:
added processor node identification to the proc group, also cleaned up method names
8 lines of code changed in 4 files:
Fix some of the comparison between signed and unsigned integer expressions warnings.
2 lines of code changed in 1 file:
Replace all instances of StaticArray with std::vector. This has been tested on the RT for all components. It is a drop in replacement. StaticArray is being removed.
0 lines of code changed in 1 file:
compiler warnings
5 lines of code changed in 3 files:
Removed the stretched grid code.
19 lines of code changed in 7 files:
Keep SimulationTime confined to that which is parsed from the ProblemSpec.
Components use SimulationState::getElapsedSimTime() for now. This info will soon be packaged into a SoleVariable and placed into the DW for tasks that need this info.
0 lines of code changed in 2 files:
Add simulation time to SimulationTime object. Arches needs this for certain tasks.
Curious this was not available previously anywhere outside of the SimController.
81 lines of code changed in 2 files:
Level.cc
- disable non-cubic checks and bulletproofing when the domain is cubic
OnDemandDataWarehouse
- Enable bulletproofing when domain is non-cubic instead of all the time.
7 lines of code changed in 1 file:
setIsNonCubicLevel()
- increased the amount of fuzz from 5* DBL_EPSILON -> 100* DBL_EPSION in the conditional
if ( std::fabs( patchesVol - levelVol ) > fuzz ) {
}
2 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.
63 lines of code changed in 3 files:
Remove fixedvector.h header.
0 lines of code changed in 1 file:
Remove fixedvector, use vector<> instead.
0 lines of code changed in 2 files:
Do not use FixedVector for selectType. Use std::vector<> instead.
7 lines of code changed in 2 files:
Added DOUT calls for displaying the task's computes/requires when SCI_DEBUG TaskGraph is enabled.
15 lines of code changed in 3 files:
problemSetup()
- Throw an exception if the number of patches in a direction is greater than the number of cells.
10 lines of code changed in 1 file:
setOverlappingPatches()
- optimization: Find and loop over neighbor patches instead of all patches.
15 lines of code changed in 1 file:
fixed comment
2 lines of code changed in 1 file:
Clear out all dead code related to the old topological sort. None of this is used anymore. Drastically simplifies understanding of the magic task graph code.
0 lines of code changed in 1 file:
Count TLB misses when PAPI is enabled.
6 lines of code changed in 2 files:
Cleanup and refactoring with PAPI support.
41 lines of code changed in 2 files:
Actually fix PAPI support.
4 lines of code changed in 1 file:
Repair broken PAPI support.
2 lines of code changed in 1 file:
-- Include <climits> for INT_MAX invocation.
(I have no clue where the buildbot compilation is picking up the climits inclusion from that it's not throwing the compilation error that I'm seeing.)
1 lines of code changed in 1 file:
Level:
- added code to keep track of overlapping patches and their overlapping regions, setOverlappingPatches()
- getOverlapCellsInRegion()
returns the range of overlapping cells for a region and patches set.
OnDemandDataWarehouse::getRegionModifiable()
Thrown an exception if a) number of copied cells != number of requested cells and
b) nCellsCopied < requestedCells + overLapCells_range_min
c) nCellsCopied > requestedCells + overLapCells_range.max
M Core/Grid/Level.cc
M Core/Grid/Level.h
M CCA/Components/Schedulers/OnDemandDataWarehouse.cc
142 lines of code changed in 2 files:
Performing cullIntersection on all levels. Originally, this was called on fine levels where there could
be neighboring patches with inside corners. Now the inside corners can occur on all levels.
Moved conditional if (patch != neighborPatch) cullIntersection() inside of method.
3 lines of code changed in 1 file:
computeVariableExtentsWithBoundaryCheck()
- added comments
- use getExtraCell(Low/High)Index instead of get(Low/High)Index for the pre-clamped extents.
18 lines of code changed in 1 file:
Ray:
- throw exception if haloCells < (2,2,2)
- tweaked DOUT statements
- computeExtents
patch->getInterior cells for high and low for patch_based ROI
TaskGraph:
createDetailedDependencies()
- Turned off cullIntersection() It returns the wrong lo & hi at the inside corner of the L
patches for RMCRT_+_Domain_DO.ups
Patch:computeVariableExtentsWithBoundaryCheck()
- changed the arbitrary value of numGhostCells from 5 to 1.
Examples.py
- removed EOL spaces.
- added the domain test RMCRT_+Domain_DO
3 lines of code changed in 1 file:
Fix name shadowing issue in DOUT variadic macro.
10 lines of code changed in 1 file:
Grid::printStatistics()
- added debug stream (GRID) that output patch extents
environmentalFlags.txt
- additional entries and organization.
DOUT.hpp
- fixed a bug, the first SCI_DEBUG name listed is properly read and processed.
21 lines of code changed in 1 file:
Cleanup DOUT-based debugging output for RMCRT-related classes. Still having issues with use of DOUT in DbgOutput::print* methods. Working on it.
For those who are wondering, below is my spiel on Dout (class) and DOUT (variadic macro), why DebugStream is not a great idea in our world today, and perhaps some motivation to move in this direction should you actually want coherent, lock-free output by multiple threads or MPI ranks. Dout simply co-opts the SCI_DEBUG env var and does not effect DebugStream.
// ------------------------------------------------------------------------------------------------
// Dout (class) versions of the above (moving away from DebugStream)
//
// Dout is an extremely lightweight way to provide the same functionality as DebugStream,
// but in a fully lock-free way for both multiple threads and MPI ranks. Dout also does not
// inherit from from the standard library (std::ostream specifically) as DebugStream does.
// The DOUT variadic macro is then used, which is printf-based. By the POSIX standard, printf
// must "behave" like it acquired a lock. The Dout class also defines an explicit bool() operator
// for checking state, e.g. active or inactive.
// ------------------------------------------------------------------------------------------------
57 lines of code changed in 4 files:
printTask() and printSchedule() DOUT versions:
- now calling printf instead of DOUT macro.
16 lines of code changed in 1 file:
Working with SFC and loadblancer functionality, re-enable SFC test.
Other minor cleanup, fix some comments.
1 lines of code changed in 1 file:
(37 more)