Directory StandAlone/tools/puda/

Total Files:
18
Deleted Files:
0
Lines of Code:
4031

[root]/StandAlone/tools/puda

Lines of Code

StandAlone/tools/puda/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 55 (100.0%) 629 (100.0%) 11.4
dav 17 (30.9%) 344 (54.7%) 20.2
guilkey 3 (5.5%) 191 (30.4%) 63.6
jas 27 (49.1%) 71 (11.3%) 2.6
luitjens 6 (10.9%) 15 (2.4%) 2.5
jthornoc 1 (1.8%) 4 (0.6%) 4.0
harman 1 (1.8%) 4 (0.6%) 4.0

Most Recent Commits

dav 2009-12-09 18:29 Rev.: 45191

Fix display of multi-level global min/max. Fix error message when requested timestep out of bounds.

0 lines of code changed in 4 files:

  • StandAlone/tools/puda: util.cc (changed), varsummary.cc (new)
jas 2009-12-07 16:15 Rev.: 45174

Add virtual destructor.

1 lines of code changed in 1 file:

  • StandAlone/tools/puda: varsummary.cc (+1)
dav 2009-12-02 16:32 Rev.: 45151


Updates to puda to display global min/max on a per timestep basis and
to add the '-brief' option to only show the global min/max info.

M puda/puda.h
M puda/puda.cc

- Added 'be_brief' and did some white space cleaning.
- Don't display global min/max in puda.cc as we need to do it in varsummary so we can display
them on a per timestep basis.

M puda/varsummary.h
M puda/varsummary.cc

- Implement the 'be_brief'
- Show global min/max each timestep.


140 lines of code changed in 7 files:

  • StandAlone/tools/puda: puda.cc (+8 -6), puda.h (new), varsummary.cc (+104 -65), varsummary.h (new)
dav 2009-11-24 17:29 Rev.: 45121

Comment out extraneous output line.

1 lines of code changed in 1 file:

  • StandAlone/tools/puda: varsummary.cc (+1 -1)
dav 2009-11-24 17:22 Rev.: 45120

Initial commit for global min/max display. Seems to work, but hasn't been extensively tested yet. Also not tested on multi-level UDAs.

190 lines of code changed in 3 files:

  • StandAlone/tools/puda: puda.cc (+1), varsummary.cc (+185 -6), varsummary.h (+4)
luitjens 2009-11-16 11:41 Rev.: 45067

Migrated a few more function calls to the new patch interface.

Deleted the old patch interface.

Removed __New() from the new patch interface calls.

15 lines of code changed in 6 files:

  • StandAlone/tools/puda: puda.cc (+1 -1), rtdata.cc (+4 -4), tecplot.cc (new), varsummary.cc (+6 -6)
jthornoc 2009-11-02 18:02 Rev.: 45022


OSX Snow Leopard fixs from Dav. (First OSX to truely support 64 bits.)

M include/sci_defs/osx_testdefs.h.in

OSX Hack isn't used any more, so I removed it. Added the snow leopard #define.

M CCA/Components/Schedulers/OnDemandDataWarehouse.h

No one uses the boundary layer parameter so I removed it.

M CCA/Components/Schedulers/TaskGraph.h

- Removed tabs messing up indentation.
- Made a few params 'const'.

M CCA/Components/Schedulers/TaskGraph.cc

- Mostly cosmetics:
- Added some white space.
- Added some {}.
- Made a few params 'const'.

M CCA/Components/Schedulers/OnDemandDataWarehouse.cc

- An undefined boundary layer was being passed in even though no one uses it, so
default it to 0,0,0.

M CCA/Components/Schedulers/SchedulerCommon.cc

- Use 'const'.

M CCA/Ports/DataWarehouse.h

- Indent.
- In allocateTemporary(), you can't give a reference parameter (boundaryLayer) a default value. Not
sure why this compiles on other machines.

M Core/Grid/Patch.h

- White space cosmetics.

M Core/Grid/Variables/ParticleVariableBase.h
M Core/Grid/Variables/ParticleSubset.h

- Can't have a function differentiated only by return type (and particularly just by 'const' on the return type).
Not sure why other compiles allow this, and/or which function they actually 'link in', but the OSX 10 compiler
doesn't like it.

M Core/Grid/Variables/ReductionVariable_special.cc

- Don't compile some of these things under snow leopard.

M Core/Grid/Variables/ParticleVariableBase.cc

- Cosmetics.

M Core/Thread/Thread.cc

- Fix a warning for John. ;)

M Core/Disclosure/TypeUtils.cc

- 64 bit functions that become multiply defined if left in for Snow Leopard.

M Core/Util/Endian.cc

- White space!

M StandAlone/sub.mk

- Need Core/OS to link.

M StandAlone/tools/puda/varsummary.cc

- 64 bit overloaded function fix for OSX snow leopard.

M configure.ac

- OSX snow leopard fixes.
- NOTE: Not checking in configure because I don't have the correct autoconf version on this
machine. I will fix this in the next commit (coming shortly).

4 lines of code changed in 1 file:

  • StandAlone/tools/puda: varsummary.cc (+4 -3)
dav 2009-10-28 12:39 Rev.: 44971


Allow for building 'sus' (et al) statically. Use the configure flag: --enable-static. For the most
part, you will not want a static build. However, in two cases you might:

1) To check for circular dependencies in the code. (Dynamic libs are forgiving in this regard.)
2) For machines that don't support shared libs (eg: AIX, some new micro-kernel Linux clusters, etc.)

Unfortunately when static linking, library order is important. There is no good way (that I know of)
to tell our build system to place the libs in a specific order, so I have hardcoded the libraries
that are necessary to static link each executable. (See CORE_STATIC_PSELIBS and CORE_STATIC_LIBS in
configVars.mk.)

Note, SUS previously build statically for AIX and Redstorm. A number of hard coded #defines for these
architectures have been replaced with more general code.

If a source code file needs to know that it is building statically (most won't, but some do), then it
will need to #include <sci_defs/compile_defs.h> and use the "STATIC_BUILD" #define'd var.

Some specific notes:

M testprograms/TestMatrix3/testmatrix3.cc

Since it is used in a library, it can't have a "main()" (as this causes two mains to show up when linking).

M configure.ac

- Go back to using 'autoconf' version 2.61 as the standard as it is available many places, and I can't
find 2.63 anywhere.
- Fixed a few uses of a $var that would cause shell script errors when not defined. (Placed it withing ""
so that it becomes an empty string (as opposed to a missing string).


13 lines of code changed in 2 files:

  • StandAlone/tools/puda: sub.mk (new)
guilkey 2009-08-11 15:15 Rev.: 44606

Add the -jim3 option to puda. This computes histograms of particle values.

191 lines of code changed in 3 files:

  • StandAlone/tools/puda: jim3.cc (new 151), jim3.h (new 39), sub.mk (+1)
jas 2009-05-13 11:03 Rev.: 44315

Add c includes.

1 lines of code changed in 1 file:

  • StandAlone/tools/puda: rtdata.cc (+1)
harman 2009-03-30 14:41 Rev.: 43924

with -gridstats option dump out the refinement ratio for each level.

4 lines of code changed in 1 file:

  • StandAlone/tools/puda: puda.cc (+4 -1)
jas 2009-03-27 10:44 Rev.: 43893

Remove sgi woff ifdefs.

1 lines of code changed in 2 files:

  • StandAlone/tools/puda: AA_MMS.cc (+1 -1)
jas 2009-03-09 18:00 Rev.: 43530

Remove Core/XMLUtil in LIBS

2 lines of code changed in 1 file:

  • StandAlone/tools/puda: sub.mk (+2 -2)
jas 2009-03-09 15:34 Rev.: 43512

Remove the Packages/Uintah/

54 lines of code changed in 21 files:

  • StandAlone/tools/puda: AA_MMS.cc (+3 -3), AA_MMS.h (+1 -1), asci.cc (new), jim1.cc (+3 -3), jim1.h (new), jim2.cc (new), jim2.h (+1 -1), puda.cc (+19 -19), rtdata.cc (+6 -6), rtdata.h (+1 -1), tecplot.cc (+3 -3), util.cc (+1 -1), varsummary.cc (+7 -7), varsummary.h (+1 -1)
jas 2009-03-09 15:23 Rev.: 43506

Remove the Packages/Uintah/

12 lines of code changed in 1 file:

  • StandAlone/tools/puda: sub.mk (+12 -12)
Generated by StatSVN 0.4.0