Directory CCA/Components/Arches/Task/

Total Files:
13
Deleted Files:
0
Lines of Code:
2319

[root]/CCA/Components/Arches/Task

Lines of Code

CCA/Components/Arches/Task/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 86 (100.0%) 1237 (100.0%) 14.3
jthornoc 80 (93.0%) 1195 (96.6%) 14.9
derekhar 3 (3.5%) 17 (1.4%) 5.6
ohdiazi 1 (1.2%) 10 (0.8%) 10.0
dav 1 (1.2%) 10 (0.8%) 10.0
ahumphrey 1 (1.2%) 5 (0.4%) 5.0

Most Recent Commits

jthornoc 2017-12-18 12:16 Rev.: 57467

Adding initial implementation of DQMOM in the
Arches/Kokkos/TaskInterface mode.

This still needs some work...

4 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (new)
ohdiazi 2017-11-10 14:55 Rev.: 57287

adding RT test, and fixing ML

10 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+10 -1)
jthornoc 2017-10-09 16:44 Rev.: 57099

Merging Oscar's bug fixes for the transport eqns.

9 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: TaskVariableTools.h (+9 -2)
jthornoc 2017-10-09 16:44 Rev.: 57098

Updating input files, some minor naming changes, and spec.

1 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: TaskController.h (+1 -1)
jthornoc 2017-10-09 16:43 Rev.: 57097

Dynamic model implemenation. More commits to follow.

Also added a taskController container.

65 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskController.h (+65)
jthornoc 2017-09-11 10:25 Rev.: 56977

Cleaning up some warnings.

4 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: SampleTask.cc (+4 -4)
jthornoc 2017-09-06 17:21 Rev.: 56965

* Move the flux initialization up to the timestep_initialize task for the scalar calc.
* Start cleaning up some redundant enums. This needs a little more work.
* Add a little more information to the ArchesTaskDBG helper.
* Fix a bug in the FaceVelocity task wherein the registration for the variables wasn’t passing the time_substep.
* Convert several task scheduling calls in KokkosSolver from individual scheduling to scheduling through the factory in groups.

21 lines of code changed in 5 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+2 -2), TaskFactoryBase.h (new), TaskInterface.h (new)
jthornoc 2017-09-05 09:46 Rev.: 56962

* Expanding the template parameters on the transport to include the flux type. This allows for greater modularity in the transport code.
* Added a function for getting temp or const variables from the DW (in the Arches task interface) so that one can pack or not pack tasks depending on the scenario.

124 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskVariableTools.h (+124)
jthornoc 2017-08-30 16:17 Rev.: 56943

Add an unmanaged (with respect the ArchesTaskInterface) variable access.
This will allow users to declare variables in a traditional Uintah
style. E.g.:

CCVariable<double> A;
tsk_info->get_unamanaged_uintah_field<CCVariable<double> >(...);

78 lines of code changed in 6 files:

  • CCA/Components/Arches/Task: FieldContainer.h (new), SampleTask.cc (+20 -5), SampleTask.h (new), TaskVariableTools.h (+16)
jthornoc 2017-08-30 11:10 Rev.: 56934

* Moved the calc of the CC velocities into its own task (by necessity)
* Add an optional parameter to the task scheduling through the factory to ignore the task if not found.
* Some additional cleanup

33 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+23 -7), TaskFactoryBase.h (+10 -3)
jthornoc 2017-08-12 21:56 Rev.: 56878

For Oscar (with edits from Jeremy):

Adding the new source term factory with the MMS source terms.

12 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskVariableTools.h (+12)
jthornoc 2017-08-10 17:25 Rev.: 56872

* Add the pressure boundary conditions post pressure linear solve which eases the calculation of the pressure gradient.
* Added a cc-velocity calculation
* Fixed a bug in the u = rho*u/rho calculation for walls (was getting something / zero )
* Pressure gradient wasn’t being added on the + side properly when boundary conditions - fixed.
* KFEupdate had one too many iterators on the + side - Fixed

1 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: AtomicTaskInterface.h (new)
jthornoc 2017-07-17 13:35 Rev.: 56797

This commit breaks the kokkos scalar tests.

* Template ConvectionHelper to enable temporary variable use in this function.
* Changed up some of the macros to have better (more descriptive) names
* Added a new patch range macro
* Packaged the momentum updates into a smaller package
* register_variable now passes a bool to indicate if the variable is temp or not. If temp, it avoids the registration

30 lines of code changed in 4 files:

  • CCA/Components/Arches/Task: TaskInterface.h (+1 -1), TaskVariableTools.cc (new), TaskVariableTools.h (+8 -4)
jthornoc 2017-07-06 22:45 Rev.: 56763

Final API change commits.

3 lines of code changed in 4 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+1 -1), TaskInterface.cc (new), TaskInterface.h (+1 -1)
jthornoc 2017-07-06 22:45

More API change.

54 lines of code changed in 12 files:

  • CCA/Components/Arches/Task: SampleTask.cc (+27 -26), SampleTask.h (+2 -2), TaskFactoryBase.cc (+2 -2), TaskInterface.cc (+2 -2), TaskInterface.h (+1 -1), TemplatedSampleTask.h (+2 -2)
jthornoc 2017-07-06 11:50 Rev.: 56757

Clean up warnings.

2 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: SampleTask.cc (+1 -7), TaskVariableTools.h (+1 -2)
jthornoc 2017-07-06 11:39 Rev.: 56756

ConstantProperty was missing a restartInitialize.
For task group scheduling, when there is a single task, use the task name rather than the group name.
Reverting the use of the task group scheduling in ExplicitSolver for now. Something isn't working correctly.

1 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+1 -1)
jthornoc 2017-07-05 17:09 Rev.: 56753

Fix a bug (thanks, Oscar for finding it) in the temp variable retrieval
- face centered variables only.

Also reduce the number of args for temp variable retrieval.

15 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: FieldContainer.h (+8 -1), TaskVariableTools.h (+7 -6)
jthornoc 2017-07-05 17:08 Rev.: 56752

Arches task interface API changed to pass packed_task boolean.

13 lines of code changed in 6 files:

  • CCA/Components/Arches/Task: SampleTask.cc (+1 -1), SampleTask.h (+2 -2), TaskFactoryBase.cc (+1 -1), TaskInterface.cc (+3 -1), TaskInterface.h (+2 -1), TemplatedSampleTask.h (+4 -3)
jthornoc 2017-07-05 17:08 Rev.: 56751

Cleanup + pass the pack_tasks bool into the callback.

72 lines of code changed in 4 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+47 -18), TaskFactoryBase.h (+4 -2), TaskInterface.h (+12 -10), TaskVariableTools.h (+9 -4)
jthornoc 2017-07-03 16:07 Rev.: 56744

Allows for retrieval of a temporary variable through a common API.

18 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskVariableTools.h (+18 -16)
jthornoc 2017-07-03 15:58 Rev.: 56743

Removing the returnNullPointer API for variable retrieval.

11 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskVariableTools.h (+11 -16)
jthornoc 2017-06-19 23:58 Rev.: 56668

Added a new factory function which will schedule a group of tasks which
the developer assembles upstream.

WallHF is now using the above mechanism and is no longer associated with
a specific propertyModelV2 bin.

50 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+38 -6), TaskFactoryBase.h (+12)
jthornoc 2017-06-15 17:24 Rev.: 56639

Add variable type information to the field container.
Add access to patch temporary variables.
Delete the fields from the FieldContainer in a generic way.

51 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: FieldContainer.h (+37 -49), TaskVariableTools.h (+14)
ahumphrey 2017-06-06 14:15 Rev.: 56609

Reintegration of incite_dev branch. Improvements/Features/Optimizations include (but not limited too):

1.) Temporal scheduling, e.g. support for multiple primary task graphs (not w-cycle)
2.) Significantly improved task graph compilation times for multi-level RMCRT at large core/patch counts
3.) GPU super patch support
4.) Highly optimized RMCRT GPU kernels
5.) Significant reduction in infrastructure memory footprint

ARCHES: methane_rmcrt test is broken due to issues with trunk code. Good luck Todd, let us know if you need another set of eyes.
WASATCH: RMCRT-Burns-Christon UDA comparison fails as the trunk input file specifies an unused variable to store. Branch code has fixed this.
-"compare_uda -ignoreVariable "VRFlux" rmcrt-burns-christon.uda.trunk rmcrt-burns-christon.uda.branch" compares exactly.
-just need to remove <save label="VRFlux"/> from original input and regenerate GS for this test.

Please let us know if anyone sees any residual issues with this commit. We are standing by to deal with any fallout.

5 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskInterface.cc (+5 -3)
jthornoc 2017-05-24 12:32 Rev.: 56573

For the variable_stats model: allow the single_variable or flux_variable
to specify if the current variable is a table lookup variable. This
alleviates the need of specifying the variable in the dataArchiver.

Also add a SCI_DEBUG in the TaskVariableTools class.

17 lines of code changed in 2 files:

  • CCA/Components/Arches/Task: TaskVariableTools.cc (+13 -2), TaskVariableTools.h (+4 -4)
jthornoc 2017-04-14 14:50 Rev.: 56435

Fix a previous failed merge attempt and add dissipation rate calc. to
the turb model.

2 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskFactoryBase.h (+2 -2)
derekhar 2017-04-05 17:20 Rev.: 56392

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.

17 lines of code changed in 3 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+4 -3), TaskFactoryBase.h (+1 -1), TaskVariableTools.h (+12 -8)
jthornoc 2017-02-28 12:04 Rev.: 56263

- Refinements on the new scheduling interface.
- Arches tasks can now be packed when appropriate into super tasks.
- Catching more errors in scheduling when packed or unpacked tasks are
present to prevent user from scheduling variable needs incorrectly.

73 lines of code changed in 3 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+46 -14), TaskFactoryBase.h (+14 -5), TaskVariableTools.cc (+13)
jthornoc 2017-02-28 12:00 Rev.: 56262

Merge with trunk.

423 lines of code changed in 6 files:

  • CCA/Components/Arches/Task: TaskFactoryBase.cc (+179), TaskFactoryBase.h (+41 -2), TaskFactoryHelper.h (new 42), TaskInterface.h (+14 -8), TaskVariableTools.cc (+143 -67), TaskVariableTools.h (+4 -4)
jthornoc 2017-02-28 12:00 Rev.: 56261

Add new property (Tabulated) evaluators.

8 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskFactoryBase.h (+8)
dav 2017-01-31 17:12 Rev.: 56204

M configure
M configure.ac

- If the user specifies a boost directory, force the compiler to ignore system dirs so that we don't
accidentally find the wrong library.

M CCA/Components/Arches/ChemMix/TableLookup.h
M CCA/Components/Arches/Task/TaskFactoryBase.h

- Remove compiler warnings, use better white space/indentation.
- We (long ago) decided to use more than 80 columns to make code more readable.

10 lines of code changed in 1 file:

  • CCA/Components/Arches/Task: TaskFactoryBase.h (+10 -13)
Generated by StatSVN 0.7.0