[root]/CCA/Components/Models
FluidsBased
(29 files, 9253 lines)
HEChem
(23 files, 9000 lines)
Radiation
(2 files, 166 lines)
RMCRT
(10 files, 4612 lines)
randomNums
(3 files, 795 lines)
floatRMCRT
(0 files, 0 lines)
fortran
(0 files, 0 lines)
SolidReactionModel
(23 files, 2009 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 10 (100.0%) | 11 (100.0%) | 1.1 |
dav | 4 (40.0%) | 8 (72.7%) | 2.0 |
jas | 4 (40.0%) | 3 (27.3%) | 0.7 |
harman | 2 (20.0%) | 0 (0.0%) | 0.0 |
Re-landscaping.
Removed DO radiation model from ICE. I don't know how many man
hours Steve and I put into this but it was a lot. It was used to produce
a couple of TST slides and movies. This commit will make the models
re-arrangement that much easier.
0 lines of code changed in 2 files:
Updating configure such that you are now required to explicitly list
the components you want to turn on at configure time. Use something
like:
--enable-all-components
or
--enable-arches
--enable-mpm
The old use of setting variables such as "USE_WASATCH=yes" or
"USE_ICE=no" is now deprecated.
If you do not turn on any component, Uintah will build the Core and
utilities.
M configure.ac
M configure
- Updates for above.
M CCA/Components/Models/sub.mk
- When all components are turned on, then some sub.mk files
(accidentally) provide the lists of libs needed for other
directories... Now that you can turn off components, this shows up
with missing libraries... hence Components/Models relies on LAPACK
so I have to add it explicitly to this sub.mk.
M StandAlone/tools/sub.mk
- Likewise, now that Arches requires the Wasatch3P, if it is turned
on, but Wasatch was not, then the Wasatch 3P libs were not linked by
these tools, so we need to list them with the other LIBS.
2 lines of code changed in 2 files:
Fixes for the CUDA linking for non-static builds. For CUDA builds, we
need to link in all libraries for executables (eg: sus, test programs,
etc) because Core_Util has CUDA in it and thus the extra dlink object
file must be linked against anything that uses Core/Util, but the
dlink file also has code from many other libraries (they all have to link
together to get the full dlink file). It might be possible to
separate all the CUDA linking out, but at least for now this will work.
Created ALL_STATIC_PSE_LIBS and ALL_PSE_LIBS variables in Makefile.in
that can be used to link executables.
Placed a list of all cuda files (.o version) in the variable
DLINK_FILES (it is added to in each sub.mk). Then, once all libraries
are built, this list of files is linked with -dlink (previously was
just linking all the archive (.a) files together, but nvcc won't let
you do this with shared (.so) libs.
Updated a number of sub.mk files to specify the complete list of libs
necessary to link and added in the CUDA_LIBRARY.
Alphabetized and removed duplicates in a lot of sub.mk files.
M CCA/Components/Models/ModelFactory.cc
- Don't use the RadiationDriver if radation was not turned on.
M Makefile.in
M CCA/Components/Models/Radiation/RMCRT/sub.mk
M CCA/Components/Models/Radiation/sub.mk
M CCA/Components/MPM/sub.mk
M CCA/Components/Wasatch/Transport/sub.mk
M CCA/Components/Wasatch/sub.mk
M CCA/Components/Wasatch/Expressions/sub.mk
M CCA/Components/Wasatch/Expressions/Turbulence/sub.mk
M CCA/Components/Wasatch/Operators/sub.mk
M CCA/Components/sub.mk
M CCA/Components/Schedulers/sub.mk
M CCA/Components/Arches/sub.mk
M CCA/Components/Examples/sub.mk
M Core/Util/sub.mk
M StandAlone/sub.mk
M StandAlone/tools/mpi_test/sub.mk
M StandAlone/tools/pfs/sub.mk
M StandAlone/tools/fsspeed/sub.mk
M StandAlone/tools/puda/sub.mk
M StandAlone/tools/tracker/sub.mk
M StandAlone/tools/dumpfields/sub.mk
M StandAlone/tools/graphview/sub.mk
M StandAlone/tools/extractors/sub.mk
M StandAlone/tools/sub.mk
M StandAlone/tools/compare_mms/sub.mk
M StandAlone/Benchmarks/sub.mk
M testprograms/CubeRootTest/sub.mk
M testprograms/TestFastMatrix/sub.mk
M testprograms/RegionTest/sub.mk
M testprograms/TestMatrix3/sub.mk
M testprograms/IteratorTest/sub.mk
M testprograms/Regridders/sub.mk
M testprograms/sub.mk
M testprograms/PatchBVH/sub.mk
M testprograms/Malloc/sub.mk
M testprograms/Thread/sub.mk
M testprograms/BNRRegridder/sub.mk
1 lines of code changed in 1 file:
Alphabetize list of libs (and thereby remove duplicates)
5 lines of code changed in 1 file:
Updated copyright information.
3 lines of code changed in 4 files: