Directory StandAlone/tools/

Total Files:
2
Deleted Files:
0
Lines of Code:
922

[root]/StandAlone/tools
            directory in repo compare_mms (11 files, 1301 lines)
            directory in repo dumpfields (28 files, 5142 lines)
            directory in repo extractors (9 files, 5648 lines)
            directory in repo fsspeed (1 files, 56 lines)
            directory in repo graphview (8 files, 1636 lines)
            directory in repo makedot (2 files, 240 lines)
            directory in repo mpi_test (4 files, 974 lines)
            directory in repo pfs (5 files, 1730 lines)
            directory in repo puda (36 files, 4745 lines)
            directory in repo radiusMaker (2 files, 318 lines)
            directory in repo tracker (2 files, 103 lines)
            directory in repo uda2nrrd (18 files, 3111 lines)
            directory in repo uda2vis (3 files, 951 lines)

Lines of Code

StandAlone/tools/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 10 (100.0%) 52 (100.0%) 5.2
dav 4 (40.0%) 43 (82.7%) 10.7
jas 5 (50.0%) 8 (15.4%) 1.6
harman 1 (10.0%) 1 (1.9%) 1.0

Most Recent Commits

dav 2014-07-15 15:16 Rev.: 52162

For static builds, BOOST must be last.

0 lines of code changed in 2 files:

  • StandAlone/tools: sub.mk (changed)
dav 2014-07-08 12:36 Rev.: 52112


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.

3 lines of code changed in 1 file:

  • StandAlone/tools: sub.mk (+3 -1)
dav 2014-06-19 00:35 Rev.: 51998

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


40 lines of code changed in 1 file:

  • StandAlone/tools: sub.mk (+40 -46)
jas 2014-06-11 21:20 Rev.: 51968

Add pidx to sub.mk files.

2 lines of code changed in 1 file:

  • StandAlone/tools: sub.mk (+2 -2)
jas 2014-06-11 15:41 Rev.: 51959

Squashed commit of the following:

commit be6e7652561b8d5cc85fb4cc6fe6bf3a178b9330
Author: John Schmidt <john.schmidt@utah.edu>
Date: Wed Jun 11 15:51:31 2014 -0600

Initial incorporation of PIDX.

4 lines of code changed in 1 file:

  • StandAlone/tools: sub.mk (+4)
harman 2014-05-06 17:03 Rev.: 51810

Tweaking for boost configure check. Turns out that the mt lib version
check, if told to look in a non-standard place, in the mt libs do not
exist in the non-standard place, can find the mt libraries in the
standard location. Need to check for this and stop it from happening if
necessary.

M src/configure.ac
M src/configure

- Make sure the boost library is found in the requested location.

M src/StandAlone/tools/sub.mk
M src/StandAlone/tools/compare_mms/sub.mk

- A number of utility programs need to link vs Boost...


1 lines of code changed in 1 file:

  • StandAlone/tools: sub.mk (+1 -1)
jas 2014-01-16 00:47 Rev.: 51467

Updated copyright information.

2 lines of code changed in 3 files:

  • StandAlone/tools: compute_Lnorm_udas.cc (new), sub.mk (+1 -1)
Generated by StatSVN 0.7.0