Directory CCA/Components/Schedulers/

Total Files:
47
Deleted Files:
1
Lines of Code:
30060

[root]/CCA/Components/Schedulers

Lines of Code

CCA/Components/Schedulers/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 428 (100.0%) 12774 (100.0%) 29.8
ahumphrey 204 (47.7%) 10687 (83.7%) 52.3
allen 121 (28.3%) 1361 (10.7%) 11.2
harman 16 (3.7%) 241 (1.9%) 15.0
bpeterson 4 (0.9%) 202 (1.6%) 50.5
dav 12 (2.8%) 200 (1.6%) 16.6
jas 67 (15.7%) 61 (0.5%) 0.9
derekhar 3 (0.7%) 21 (0.2%) 7.0
jholmen 1 (0.2%) 1 (0.0%) 1.0

Most Recent Commits

allen 2017-12-29 16:05 Rev.: 57532

minor reformating for consistancy

0 lines of code changed in 2 files:

  • CCA/Components/Schedulers: OnDemandDataWarehouse.cc (changed)
allen 2017-12-28 19:46 Rev.: 57531

remove shared state

0 lines of code changed in 2 files:

  • CCA/Components/Schedulers: SchedulerCommon.cc (new)
allen 2017-12-27 17:30 Rev.: 57523

added a print method

0 lines of code changed in 2 files:

  • CCA/Components/Schedulers: DWDatabase.h (changed)
allen 2017-12-21 23:44 Rev.: 57514

call to acces method

0 lines of code changed in 2 files:

  • CCA/Components/Schedulers: UnifiedScheduler.cc (new)
allen 2017-12-21 21:23 Rev.: 57512

added second interface computeTaskGraphIndex to remove need for shared shate call, renamed recomputeTimeStep to recomputeDelT for a more accurate call

4 lines of code changed in 2 files:

  • CCA/Components/Schedulers: MPIScheduler.cc (new)
allen 2017-12-21 14:50 Rev.: 57506

standardized the error output for the factories

0 lines of code changed in 2 files:

  • CCA/Components/Schedulers: SchedulerFactory.cc (new)
ahumphrey 2017-12-19 15:29 Rev.: 57481

* Finish repairs and cleanup in Core/Malloc, specifically the Uintah default Allocator (when SCI_MALLOC is enabled). Remove legacy pthread code, recursive locks, etc. Use std::mutex, no need for recursive mutex.

* Remove sci_system, use std:system

* Remove all remaining pthread remnants (including THREAD_LIBRARY references). Only use and rely on std::thread. Should have never been mixing pthreads with std::thread. Can't bank on what the underlying thread impl is.

* Generate new configure script.

* Lastly, fix issue with MPM PetscSolver include. Now Uintah compiles without Petsc (e.g. --without-petsc), as it should be able to.

1 lines of code changed in 2 files:

  • CCA/Components/Schedulers: UnifiedScheduler.h (+1 -1)
bpeterson 2017-12-18 15:47 Rev.: 57471

Made a goof, committed from an older version. This is a better commit without printf comments displaying.

5 lines of code changed in 1 file:

  • CCA/Components/Schedulers: UnifiedScheduler.cc (+5 -72)
bpeterson 2017-12-18 15:45 Rev.: 57470

This fixes a race condition when a node has multiple scheduler threads processing multiple patches from MPI neighbors.

120 lines of code changed in 1 file:

  • CCA/Components/Schedulers: UnifiedScheduler.cc (+120 -60)
ahumphrey 2017-12-15 14:35 Rev.: 57457

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 1 file:

  • CCA/Components/Schedulers: OnDemandDataWarehouse.cc (-41)
allen 2017-12-13 18:22 Rev.: 57440

added a SolverCommon class, made OnTheFlyAnalysis a first class UintahParallelComponent, added acess methods for component controll in UintahParallelComponent

11 lines of code changed in 3 files:

  • CCA/Components/Schedulers: SchedulerCommon.cc (+9 -7), SchedulerCommon.h (+2 -2)
bpeterson 2017-12-13 16:20 Rev.: 57438

This should fix the build bot bugs preventing RMCRT_ML_GPU and RMCRT_bm1_DO_GPU. Long story short, the UnifiedScheduler was requesting all levels from all patches in the patchset, and I only needed to get the level for the active patch being computed against.

24 lines of code changed in 1 file:

  • CCA/Components/Schedulers: UnifiedScheduler.cc (+24 -14)
allen 2017-12-13 09:41 Rev.: 57435

fixed a couple of rename vars

5 lines of code changed in 2 files:

  • CCA/Components/Schedulers: UnifiedScheduler.cc (+5 -6), UnifiedScheduler.h (-1)
allen 2017-12-12 20:26 Rev.: 57433

Cleanup of the Scheduler to use ports for all components

191 lines of code changed in 29 files:

  • CCA/Components/Schedulers: DynamicMPIScheduler.cc (+17 -17), DynamicMPIScheduler.h (new), KokkosOpenMPScheduler.cc (new), KokkosOpenMPScheduler.h (new), MPIScheduler.cc (+41 -41), MPIScheduler.h (new), OnDemandDataWarehouse.cc (+4 -4), OnDemandDataWarehouse.h (new), Relocate.cc (+5 -5), Relocate.h (new), SchedulerCommon.cc (+56 -50), SchedulerCommon.h (+11 -7), SchedulerFactory.cc (+4 -5), SchedulerFactory.h (+11 -11), TaskGraph.cc (new), TaskGraph.h (+2 -2), UnifiedScheduler.cc (+22 -21), UnifiedScheduler.h (+3 -2)
allen 2017-12-11 10:46 Rev.: 57416

fixed method name call and warning

4 lines of code changed in 1 file:

  • CCA/Components/Schedulers: UnifiedScheduler.cc (+4 -4)
allen 2017-12-08 19:10 Rev.: 57414

Moved PIDX checks out of the SimCtrl. Cleanup of varnames

7 lines of code changed in 2 files:

  • CCA/Components/Schedulers: MPIScheduler.cc (+4 -4), SchedulerCommon.cc (+3 -3)
ahumphrey 2017-12-01 15:57 Rev.: 57383

Fix shadowing issue on problemSetup() for several scheduler implementations.

17 lines of code changed in 8 files:

  • CCA/Components/Schedulers: DynamicMPIScheduler.cc (+10 -7), DynamicMPIScheduler.h (+1 -1), KokkosOpenMPScheduler.cc (+1 -1), KokkosOpenMPScheduler.h (+1 -1), MPIScheduler.cc (+1 -1), MPIScheduler.h (+1 -1), UnifiedScheduler.cc (+1 -1), UnifiedScheduler.h (+1 -1)
allen 2017-11-29 14:14 Rev.: 57372

added code to return nullptr

5 lines of code changed in 1 file:

  • CCA/Components/Schedulers: SchedulerCommon.cc (+5 -1)
allen 2017-11-29 14:13 Rev.: 57371

removed debug code and replace var

11 lines of code changed in 1 file:

  • CCA/Components/Schedulers: TaskGraph.cc (+11 -20)
ahumphrey 2017-11-29 13:55 Rev.: 57370

Guard the DataArchiver DebugStream (check if dbg.active()). This is causing issues when not active on mira. DebugStreams need to go away in favor of much simpler Dout, as DebugStreams unnecessarily inherit from the standard library (std::ostream) and are unduley compicated for basic debug output.

Also cleaned up poor whitespace, linebreaks and indentation, other formatting. Seems like someone went through the infrastructure with a faulty code formatter previously...

2 lines of code changed in 1 file:

  • CCA/Components/Schedulers: SchedulerCommon.h (+2 -2)
allen 2017-11-24 15:37 Rev.: 57339

removed the delta T label from the shared state and began removing the shared state where possible

27 lines of code changed in 1 file:

  • CCA/Components/Schedulers: TaskGraph.cc (+27 -11)
allen 2017-11-22 21:12 Rev.: 57334

additional changes related to the Application Common

51 lines of code changed in 5 files:

  • CCA/Components/Schedulers: DynamicMPIScheduler.cc (+5 -5), MPIScheduler.cc (+16 -16), SchedulerCommon.cc (+20 -13), SchedulerCommon.h (+3 -1), UnifiedScheduler.cc (+7 -7)
jholmen 2017-11-21 23:41 Rev.: 57328

* 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.

1 lines of code changed in 1 file:

  • CCA/Components/Schedulers: MPIScheduler.cc (+1)
allen 2017-11-21 15:40 Rev.: 57322

update to move to a application common class and remove the shared state

207 lines of code changed in 14 files:

  • CCA/Components/Schedulers: DynamicMPIScheduler.cc (+14 -16), DynamicMPIScheduler.h (+1 -1), KokkosOpenMPScheduler.cc (+2 -4), KokkosOpenMPScheduler.h (+1 -1), MPIScheduler.cc (+29 -30), MPIScheduler.h (+1 -1), OnDemandDataWarehouse.cc (+20 -18), RuntimeStats.hpp (+4 -1), SchedulerCommon.cc (+67 -41), SchedulerCommon.h (+22 -8), TaskGraph.cc (+24 -15), UnifiedScheduler.cc (+21 -21), UnifiedScheduler.h (+1 -1)
allen 2017-11-06 13:58 Rev.: 57235

commented out used variables

3 lines of code changed in 1 file:

  • CCA/Components/Schedulers: SchedulerCommon.cc (+3 -3)
allen 2017-10-25 13:11 Rev.: 57178

added processor node identification to the proc group, also cleaned up method names

1 lines of code changed in 1 file:

  • CCA/Components/Schedulers: TaskGraph.cc (+1 -1)
allen 2017-10-25 12:57 Rev.: 57177

added processor node identification to the proc group, also cleaned up method names

0 lines of code changed in 2 files:

  • CCA/Components/Schedulers: DetailedTasks.cc (new)
allen 2017-10-25 12:48 Rev.: 57176

added processor node identification to the proc group, also cleaned up method names

187 lines of code changed in 9 files:

  • CCA/Components/Schedulers: DetailedTasks.cc (+30 -30), DynamicMPIScheduler.cc (+12 -12), KokkosOpenMPScheduler.cc (+3 -3), MPIScheduler.cc (+14 -14), OnDemandDataWarehouse.cc (+38 -38), Relocate.cc (+17 -17), SchedulerCommon.cc (+31 -31), TaskGraph.cc (+35 -35), UnifiedScheduler.cc (+7 -7)
jas 2017-10-24 12:37 Rev.: 57171

Fix some of the comparison between signed and unsigned integer expressions warnings.

16 lines of code changed in 7 files:

  • CCA/Components/Schedulers: DetailedTask.cc (+1 -1), DetailedTasks.cc (+1 -1), OnDemandDataWarehouse.cc (+4 -4), Relocate.cc (+5 -5), SchedulerCommon.cc (+2 -2), TaskGraph.cc (+3 -3)
ahumphrey 2017-10-23 16:26 Rev.: 57170

Use default initialization.

2 lines of code changed in 2 files:

  • CCA/Components/Schedulers: SchedulerCommon.cc (-2), SchedulerCommon.h (+2 -2)
allen 2017-10-23 15:53 Rev.: 57169

added missing default

2 lines of code changed in 1 file:

  • CCA/Components/Schedulers: SchedulerCommon.cc (+2)
jas 2017-10-05 13:10 Rev.: 57084

Remove empty file.

0 lines of code changed in 1 file:

  • CCA/Components/Schedulers: Util.cc (del)
harman 2017-10-03 14:08 Rev.: 57063

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.

1 lines of code changed in 1 file:

  • CCA/Components/Schedulers: OnDemandDataWarehouse.cc (+1 -1)
ahumphrey 2017-09-27 17:26 Rev.: 57037

Should fix the problem on Mira with crashing threads.

12 lines of code changed in 1 file:

  • CCA/Components/Schedulers: UnifiedScheduler.cc (+12 -5)
ahumphrey 2017-09-27 17:11 Rev.: 57036

Remove delayed thread detach hack.

1 lines of code changed in 1 file:

  • CCA/Components/Schedulers: UnifiedScheduler.cc (+1 -7)
ahumphrey 2017-09-27 16:34 Rev.: 57034

Somehow the elimination of duplicate dependencies has fouled up OutputNthProc. Revert commit -r56875 until I can figure this one out.

7 lines of code changed in 1 file:

  • CCA/Components/Schedulers: DetailedTasks.cc (+7 -6)
allen 2017-09-21 12:09 Rev.: 57021

reverted code to keep the last reduction task and added dbg statement

26 lines of code changed in 1 file:

  • CCA/Components/Schedulers: SchedulerCommon.cc (+26 -8)
allen 2017-09-20 12:50 Rev.: 57016

fixes for W-cycle and performing on-the-fly analysis

24 lines of code changed in 3 files:

  • CCA/Components/Schedulers: SchedulerCommon.cc (+15 -9), SchedulerCommon.h (+1 -1), TaskGraph.cc (+8 -1)
ahumphrey 2017-09-19 18:08 Rev.: 57015

Pass generic tg_num to addTask, let that method handle details.

1 lines of code changed in 1 file:

  • CCA/Components/Schedulers: SchedulerCommon.cc (+1 -2)
ahumphrey 2017-09-19 17:17 Rev.: 57014

Extract common code for adding task to task graph(s) into helper method (private addTask with different signature). Should help with current work with w-cycles.

44 lines of code changed in 2 files:

  • CCA/Components/Schedulers: SchedulerCommon.cc (+37 -40), SchedulerCommon.h (+7)

(79 more)

Generated by StatSVN 0.7.0