[root]/CCA/Components/Models
FluidsBased
(29 files, 9334 lines)
HEChem
(23 files, 8997 lines)
Radiation
(1 files, 35 lines)
RMCRT
(11 files, 7452 lines)
randomNums
(3 files, 795 lines)
SolidReactionModel
(23 files, 2008 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 7 (100.0%) | 3 (100.0%) | 0.4 |
jas | 5 (71.4%) | 3 (100.0%) | 0.6 |
ahumphrey | 2 (28.6%) | 0 (0.0%) | 0.0 |
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 5 files: