April 2019 Commit Log

Number of Commits:
59
Number of Active Developers:
7
allen 2019-04-29 10:16 Rev.: 59381

fixed the extern declarations

3 lines of code changed in 1 file:

dav 2019-04-26 13:39 Rev.: 59379


This commit fixes the error seen on the latest XCode (Mac) compiler.
It is my opinion that the current compiler is wrong, and that it will
be fixed at some point, which means the 'hack' in this commit could
be removed at that point. The only file in this commit that relates
to the XCode issue is SuperBox.h

There are also a few cosmetic / warning removal updates here too.

[Note: These commits passed my (partial) local RT, so shoving them into the build bot for full verification.]

M Core/Containers/SuperBox.h

* Main fix for XCode: Added the ValueCompare2 function. See comment in file
about the issue.
* Added some white space.
* For header files, one line functions should be on the same line as the function name.
The main purpose of header files is to see the interface, and this makes reading
the interface much easier. The implementation is (especially for one line functions)
usually not material to the person looking through the spec (.h file).
* Added a comment with the name of the class at the end of the class to make
scanning through the file easier.

M CCA/Components/OnTheFlyAnalysis/meanTurbFluxes.cc

- Fixed warning (ie: initialized var)... and probable actual error (if, I think, there were no comments
in the file being read).

M CCA/Components/Schedulers/DetailedTasks.cc

- Always use {}, even in single line if/for statements. It's just a good habit.

M CCA/Components/Schedulers/SchedulerCommon.cc

- Fix type mismatch warning (and added some white space).

M CCA/Components/Solvers/HypreSolver.h

- It is undefined to throw exceptions in destructors. Also, these throws should
never happen as the type is checked when the object is created. Replaced with error messages
and program exit.

M Core/Grid/Variables/ComputeSet.cc

- Fix compiler warnings. Can't pass a null reference, so doesn't make sense to check for one.
Instead, check to see if the referenced object doesn't contain anything.

70 lines of code changed in 10 files:

jas 2019-04-22 14:45 Rev.: 59369

Add configure script for Fedora.

3 lines of code changed in 1 file:

allen 2019-04-19 13:45 Rev.: 59367

added new mapped info mapper access

584 lines of code changed in 2 files:

allen 2019-04-19 13:44 Rev.: 59366

replace DetailedTasks mapper with new mapped info mapper, used standard name prefixes, and cleaned up task graph count

137 lines of code changed in 12 files:

allen 2019-04-19 13:42 Rev.: 59365

added additional stats reporting

53 lines of code changed in 1 file:

allen 2019-04-19 13:41 Rev.: 59364

removed pural check

0 lines of code changed in 2 files:

allen 2019-04-19 13:41 Rev.: 59363

new name for access methods

2 lines of code changed in 1 file:

allen 2019-04-19 13:40 Rev.: 59362

added a mapped info mapper and additional stats

1156 lines of code changed in 1 file:

jas 2019-04-19 08:19 Rev.: 59361

Add scripts for installing software dependencies and the configure line for Ubuntu.

6 lines of code changed in 2 files:

allen 2019-04-18 18:00 Rev.: 59360

added friend class

0 lines of code changed in 2 files:

allen 2019-04-18 17:59 Rev.: 59359

added new helped functions

135 lines of code changed in 1 file:

allen 2019-04-18 17:58 Rev.: 59358

added init value to remove warning

2 lines of code changed in 2 files:

allen 2019-04-18 17:57 Rev.: 59357

change type to remove warning

0 lines of code changed in 4 files:

jthornoc 2019-04-17 10:22 Rev.: 59352

More edits on ghost tracking including a new SCI_DEBUG flag.

131 lines of code changed in 7 files:

jthornoc 2019-04-16 15:10 Rev.: 59351

Fixing a bug in the ghost tracking for all tasks across all factories.

20 lines of code changed in 3 files:

jthornoc 2019-04-16 14:07 Rev.: 59350

Fixing a bug in the max ghost cell tracking. Also clean out the list of
max ghost cells between scheduleInitialize and scheduleTimeAdvance.

31 lines of code changed in 3 files:

harman 2019-04-16 10:20 Rev.: 59349

Hide steps from the webpage if they're skipped.

15 lines of code changed in 1 file:

jthornoc 2019-04-16 08:56 Rev.: 59348

Moving function to implementation file so that Uintah::DOUT will get
picked up when using 'sus -d'.

34 lines of code changed in 2 files:

harman 2019-04-15 16:00 Rev.: 59347

actuallyInitialize()

Added call to GeometryPieceFactory::resetFactory() so the geom_pieces can be destroyed before
sus shutdown. Thanks Dav!



21 lines of code changed in 3 files:

harman 2019-04-15 15:30 Rev.: 59346


Added function to get the status from all steps. Use this to determine if the build directory should be copied.

Formatting.

153 lines of code changed in 1 file:

harman 2019-04-15 12:04 Rev.: 59345

If there's a failure copy the build directory to

/tmp/buildbot/<buildname>/<buildnumber>

so developer can invesigate.


46 lines of code changed in 1 file:

allen 2019-04-15 09:54 Rev.: 59344

added a warning when recomputing

12 lines of code changed in 1 file:

guilkey 2019-04-15 09:47 Rev.: 59343

Removed some instances of pDeformationMeasureLabel in AMRMPM.cc

0 lines of code changed in 1 file:

jthornoc 2019-04-15 09:12 Rev.: 59342

The parenthesis on these ternary statements were messed up resulting in
an abs() on a bool.

Thanks Allen for pointing out the warning.

13 lines of code changed in 1 file:

guilkey 2019-04-15 08:17 Rev.: 59341

Uncomment the localRT tests that I commented out during debugging. Commented
out a requires in interpolateParticlesToGrid_CFI.

5 lines of code changed in 2 files:

guilkey 2019-04-14 06:53 Rev.: 59340

Remove a get for pDeformationMeasureLabel for which I'd already removed the
requires.

3 lines of code changed in 1 file:

guilkey 2019-04-13 15:49 Rev.: 59339

Change the interface to the interpolators. Previously, all calls to the
interpolators passed in the particle's reference size and the deformation
gradient, even though only CP*Interpolators use the deformation gradient.
Now, at the top of each MPM timestep, the current size (F*size for CP*I
particles, or just size for other interpolators) is passed in. This has
the upside of only computing the F*size product once/timestep, not once per
call to an interpolator task. Also, fewer tasks require the deformation
gradient, so data dependencies are reduced a little bit.

440 lines of code changed in 91 files:

harman 2019-04-12 10:49 Rev.: 59337

Polished;
- changed variable name d_piece -> d_geom_piece
- added dividing lines

0 lines of code changed in 6 files:

allen 2019-04-12 10:43 Rev.: 59336

added for restart

11 lines of code changed in 1 file:

allen 2019-04-12 10:41 Rev.: 59335

remvoed errant space

1 lines of code changed in 1 file:

allen 2019-04-12 10:40 Rev.: 59334

made the is call const

2 lines of code changed in 2 files:

guilkey 2019-04-11 17:36 Rev.: 59333

Re-enable particle data comparisons in compare_uda.

6 lines of code changed in 1 file:

allen 2019-04-11 16:45 Rev.: 59332

added the ability to select which vars to access

156 lines of code changed in 15 files:

allen 2019-04-11 16:41 Rev.: 59331

added access method for the output

7 lines of code changed in 2 files:

harman 2019-04-11 15:20 Rev.: 59330

Changed the foreach() loops to handle large number of frames.

0 lines of code changed in 2 files:

allen 2019-04-11 14:38 Rev.: 59328

removed the need for the apps to activate a reduction var - the AppCommon does that now

96 lines of code changed in 23 files:

jthornoc 2019-04-11 09:37 Rev.: 59325

Adding an input file that computes closure on a frozen vel field.
Had to edit spec and VarInterpolation class to get this to work.

3 lines of code changed in 2 files:

allen 2019-04-10 16:23 Rev.: 59324

moved the activate to be with the compute and made the dual app (MPMICE) check generic

256 lines of code changed in 14 files:

allen 2019-04-09 14:04 Rev.: 59320

fix for the domains

36 lines of code changed in 1 file:

allen 2019-04-09 14:01 Rev.: 59319

changed the bounds

4 lines of code changed in 1 file:

ahumphrey 2019-04-09 13:44 Rev.: 59318

Fix broken PatchOrder DetailedTaskPriorityComparison.

16 lines of code changed in 1 file:

ahumphrey 2019-04-09 10:32 Rev.: 59317

Remove debug output.

0 lines of code changed in 1 file:

ahumphrey 2019-04-09 10:09 Rev.: 59316

Fix broken process for Queue Priority Algorithm selection.
Replace list of conditionals with "if, elseif, else" conctruct.

43 lines of code changed in 5 files:

harman 2019-04-09 09:53 Rev.: 59315

Formatting: Added {}, horizontal and vertical spaces.

167 lines of code changed in 3 files:

jthornoc 2019-04-09 08:37 Rev.: 59314

Updating the ghost reporting and folding it into a SCI_DEBUG flag in
Arches with the Arches_Variable_Task_Dep tag.

108 lines of code changed in 4 files:

harman 2019-04-08 16:46 Rev.: 59313

scheduleComputeLagrangianValuesMPM()
- Require timestepLabel from the oldDW to be consistent with the task.


1 lines of code changed in 1 file:

guilkey 2019-04-06 15:30 Rev.: 59310

Fix some warnings in the ArrudaBoyce model.

0 lines of code changed in 2 files:

ahumphrey 2019-04-05 16:34 Rev.: 59308

Reincorporate the old toplogical sort for the task graph (off by default), primarily for historic and reproducability reasons. This also brings back all task queue priority algorithms.

770 lines of code changed in 12 files:

guilkey 2019-04-04 15:14 Rev.: 59306

remove a "d_" from a variable that the ParticleCreator class doesn't own.

3 lines of code changed in 1 file:

jthornoc 2019-04-03 23:07 Rev.: 59305

Changing initialization for the struct since it was causing problems
with the inlet compiler.

4 lines of code changed in 1 file:

jthornoc 2019-04-03 13:40 Rev.: 59304

Slight reordering of things..

8 lines of code changed in 1 file:

jthornoc 2019-04-03 13:35 Rev.: 59303

Replace the simple int with a ghost cell information container (struct)
for the max ghost cell information.

60 lines of code changed in 3 files:

guilkey 2019-04-03 11:30 Rev.: 59302

Add ability to restart timesteps, currently based on integrated nodal velocity
being too large relative to cell size divided by timestep size

56 lines of code changed in 4 files:

jthornoc 2019-04-03 08:56 Rev.: 59301

Putting braces on an if statement to avoid the infamous goto fail bug.

2 lines of code changed in 1 file:

jthornoc 2019-04-02 13:07 Rev.: 59299

Record max ghost for schedInitialize across all tasks.

7 lines of code changed in 1 file:

jthornoc 2019-04-02 13:05 Rev.: 59298

Adding max ghost tracking per factory and per entire variable space
across new and old DW.

109 lines of code changed in 4 files:

allen 2019-04-02 12:34 Rev.: 59297

fixes for headnode check

14 lines of code changed in 1 file:

harman 2019-04-02 10:16 Rev.: 59296

Commented out failing kokkos tests.

34 lines of code changed in 2 files:

March 2019 »

Generated by StatSVN 0.7.0