/trunk/src Developers: jholmen

Login name:
jholmen
Total Commits:
60 (0.4%)
Lines of Code:
5,652 (2.3%)
Most Recent Commit:
2017-12-18 18:58
Tweet this:
Tweet this

Activity by Clock Time

Activity by Hour of Day for jholmen

Activity by Day of Week for jholmen

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 60 (100.0%) 5652 (100.0%) 94.2
CCA/Components/Models/Radiation/RMCRT/ 13 (21.7%) 5553 (98.2%) 427.1
include/sci_defs/ 1 (1.7%) 42 (0.7%) 42.0
CCA/Components/Heat/ 16 (26.7%) 16 (0.3%) 1.0
Core/Grid/Variables/ 10 (16.7%) 10 (0.2%) 1.0
CCA/Components/Arches/SourceTerms/ 3 (5.0%) 6 (0.1%) 2.0
/ 1 (1.7%) 5 (0.1%) 5.0
CCA/Components/PhaseField/ 3 (5.0%) 4 (0.1%) 1.3
CCA/Components/Arches/ChemMix/ 2 (3.3%) 4 (0.1%) 2.0
CCA/Components/Solvers/ 1 (1.7%) 3 (0.1%) 3.0
StandAlone/ 1 (1.7%) 2 (0.0%) 2.0
CCA/Components/Examples/ 1 (1.7%) 2 (0.0%) 2.0
CCA/Components/Arches/ 2 (3.3%) 2 (0.0%) 1.0
build_scripts/ 2 (3.3%) 1 (0.0%) 0.5
CCA/Components/Schedulers/ 1 (1.7%) 1 (0.0%) 1.0
CCA/Components/Arches/Radiation/ 3 (5.0%) 1 (0.0%) 0.3

Activity of jholmen

Most Recent Commits

jholmen 2017-12-18 18:58 Rev.: 57475

* Added a template parameter to compute4Flux to manage the KokkosView3 type for intensity.

0 lines of code changed in 2 files:

  • CCA/Components/Arches/Radiation: DORadiationModel.cc (new)
jholmen 2017-12-17 18:32 Rev.: 57465

* Replaced use of std::vector within rayTrace_dataOnion_solveDivQFunctor with arrays of plain old data and views.
* Templated rayTrace_dataOnion_solveDivQFunctor on maxLevels.
* Added the FIXED_RANDOM_NUM macro.
* Removed use of d_isSeedRandom within functors.
* Hard-coded use of d_flowCell within functors.

202 lines of code changed in 1 file:

  • CCA/Components/Models/Radiation/RMCRT: RayKokkos.cc (+202 -116)
jholmen 2017-12-15 23:57 Rev.: 57464

* Setup views outside of functors.
* Updates to work with more plain old data within functors.

122 lines of code changed in 1 file:

  • CCA/Components/Models/Radiation/RMCRT: RayKokkos.cc (+122 -71)
jholmen 2017-12-15 16:50 Rev.: 57461

* Added RayKokkos.h.
* Replaced use of MersenneTwister with KokkosRandom.
* Removed rayDirection_cellFace.
* Removed rayDirectionHyperCube_cellFace.
* Removed findRayDirectionHyperCube.
* Removed rayLocation_cellFace.

This commit replaces use of the MersenneTwister with a portable Kokkos alternative. This alternative is based on Vigna, Sebastiano (2014). "An experimental exploration of Marsaglia's xorshift generators, scrambled." http://arxiv.org/abs/1402.6246

Note, this generator is seeded using the time. To enable comparisons with Ray:CPU, define FIXED_RANDOM_NUM in src/Core/Math/MersenneTwister.h. To enable comparisons with Ray:GPU, define FIXED_RANDOM_NUM in src/CCA/Components/Models/Radiation/RMCRT/RayGPUKernel.cu.

This commit also removes functions featuring use of the MersenneTwister. These have been (or will be) brought into functors.

512 lines of code changed in 2 files:

  • CCA/Components/Models/Radiation/RMCRT: RayKokkos.cc (+133 -282), RayKokkos.h (new 379)
jholmen 2017-12-14 23:03 Rev.: 57455

* Removed updateSumI_ML.
* Removed boundary flux calculations.

updateSumI_ML functionality has been brought into rayTrace_dataOnion_solveDivQFunctor.

Boundary flux calculations have been temporarily removed in preparation for replacing the MersenneTwister with a portable Kokkos alternative.

11 lines of code changed in 1 file:

  • CCA/Components/Models/Radiation/RMCRT: RayKokkos.cc (+11 -472)
jholmen 2017-12-14 20:29 Rev.: 57454

* Updated multi-level RMCRT:Kokkos to match the implementation within Ray.cc r57329.

581 lines of code changed in 1 file:

  • CCA/Components/Models/Radiation/RMCRT: RayKokkos.cc (+581 -462)
jholmen 2017-12-14 18:52 Rev.: 57451

* Updated to std::ostringstream for Hypre-less builds.

3 lines of code changed in 1 file:

  • CCA/Components/Solvers: SolverFactory.cc (+3 -3)
jholmen 2017-12-13 13:42 Rev.: 57437

* Updated single-level RMCRT:Kokkos to match the implementation within Ray.cc r57329.

351 lines of code changed in 1 file:

  • CCA/Components/Models/Radiation/RMCRT: RayKokkos.cc (+351 -319)
jholmen 2017-11-22 12:01 Rev.: 57330

* Removed unnecessary code paths that are no longer needed due to separating RMCRT:CPU and RMCRT:Kokkos.

4 lines of code changed in 1 file:

  • CCA/Components/Models/Radiation/RMCRT: RayKokkos.cc (+4 -128)
jholmen 2017-11-22 10:35 Rev.: 57329

* Removed Kokkos-based RMCRT implementations from Ray.cc.
* Added CCA/Components/Models/Radiation/RMCRT/RayKokkos.cc.

This commit moves Kokkos-based RMCRT implementations into their own file.

Note, Kokkos must be invoked using --with-kokkos=DIR to manage which version is picked up.

3769 lines of code changed in 4 files:

  • CCA/Components/Models/Radiation/RMCRT: Ray.cc (+2 -566), RayKokkos.cc (+3761), sub.mk (+6 -1)
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.

97 lines of code changed in 45 files:

  • configVars.mk.in (+5 -1)
  • CCA/Components/Arches: ConvectionHelper.h (new)
  • CCA/Components/Arches/ChemMix: ClassicTableInterface.cc (+2), ClassicTableInterface.h (+2)
  • CCA/Components/Arches/Radiation: DORadiationModel.cc (+1)
  • CCA/Components/Arches/SourceTerms: CoalGasDevol.cc (+2), CoalGasHeat.cc (+2), CoalGasOxi.cc (+2)
  • CCA/Components/Examples: Poisson1.cc (+2)
  • CCA/Components/Heat: AMRCCHeat2D.h (new), AMRCCHeat3D.h (+2), AMRNCHeat2D.h (+2), AMRNCHeat3D.h (new), CCHeat2D.h (+2), CCHeat3D.h (new), NCHeat2D.h (new), NCHeat3D.h (+2)
  • CCA/Components/Models/Radiation/RMCRT: Ray.cc (+1)
  • CCA/Components/PhaseField: AMRPhaseField.h (new), PhaseField.h (+2)
  • CCA/Components/Schedulers: MPIScheduler.cc (+1)
  • Core/Grid/Variables: Array3.h (+2), Array3Data.h (new), Array3Window.h (new), BlockRange.hpp (+2), constVariable.h (new)
  • StandAlone: sub.mk (+2 -1)
  • build_scripts: build_kokkos (+1 -2)
  • include/sci_defs: kokkos_testdefs.h.in (new 42)
Generated by StatSVN 0.7.0