[root]/testprograms
CubeRootTest
(2 files, 129 lines)
IteratorTest
(2 files, 125 lines)
Malloc
(14 files, 748 lines)
PatchBVH
(2 files, 260 lines)
RegionTest
(3 files, 306 lines)
Regridders
(6 files, 925 lines)
SFCTest
(2 files, 272 lines)
TestBoxGrouper
(9 files, 733 lines)
TestConsecutiveRangeSet
(3 files, 378 lines)
TestFastMatrix
(3 files, 368 lines)
TestMatrix3
(3 files, 640 lines)
TestRangeTree
(4 files, 653 lines)
TestSuite
(7 files, 654 lines)
Thread
(0 files, 0 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 8 (100.0%) | 6 (100.0%) | 0.7 |
jas | 4 (50.0%) | 3 (50.0%) | 0.7 |
ahumphrey | 4 (50.0%) | 3 (50.0%) | 0.7 |
Some cleanup in the build system and also removing some sci_*.h files
Generate new configure script.
3 lines of code changed in 2 files:
Removal of src/Core/Thread and related refactoring throughout the code-base.
This is the first step in a series of infrastrucutre overhauls to modernize Uintah. Though this all passes local RT (both CPU and GPU tests), I expect some fallout we haven't considered and will be standing by to deal with any issues. Once the dust settles, we will move to replacing Core/Malloc with jemalloc.
* We are now using the standard library for all multi-threading needs within the infrastructure, e.g. std::atomic, std::thread, std::mutex, etc.
* The Unified Scheduler is now the only multi-threaded scheduler, e.g. ThreadedMPIScheduler no longer exists (though the source will soon be placed into an attic).
* Threads spawned by the Unified Scheduler are detached by default (not joinable), allowing for easy, clean and independent execution. There are no longer ConditionVariables used to signal worker threads, just a simple enum for thread-state.
* What was Core/Thread/Time.* is now Core/Util/Time.* - a next step will be to migrate all internal timers, etc to use std::chrono.
* NOTE: Though much cleanup has occurred with this commit, there is still significant cleanup and formatting to be done. The scope of this commit neccessitates a more incremental approach.
0 lines of code changed in 2 files:
Update copyright date to 2016.
3 lines of code changed in 4 files: