[root]/StandAlone/tools/extractors
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 35 (100.0%) | 44 (100.0%) | 1.2 |
jas | 27 (77.1%) | 35 (79.5%) | 1.2 |
dav | 3 (8.6%) | 6 (13.6%) | 2.0 |
ahumphrey | 2 (5.7%) | 2 (4.5%) | 1.0 |
guilkey | 1 (2.9%) | 1 (2.3%) | 1.0 |
allen | 2 (5.7%) | 0 (0.0%) | 0.0 |
* Finish repairs and cleanup in Core/Malloc, specifically the Uintah default Allocator (when SCI_MALLOC is enabled). Remove legacy pthread code, recursive locks, etc. Use std::mutex, no need for recursive mutex.
* Remove sci_system, use std:system
* Remove all remaining pthread remnants (including THREAD_LIBRARY references). Only use and rely on std::thread. Should have never been mixing pthreads with std::thread. Can't bank on what the underlying thread impl is.
* Generate new configure script.
* Lastly, fix issue with MPM PetscSolver include. Now Uintah compiles without Petsc (e.g. --without-petsc), as it should be able to.
2 lines of code changed in 2 files:
commented out unused var to remove warnings
0 lines of code changed in 2 files:
Fix some of the comparison between signed and unsigned integer expressions warnings.
15 lines of code changed in 3 files:
Remove reference to ShareAssignParticleVariable.h, and remove empty tracker/.
8 lines of code changed in 14 files:
Output string names.
3 lines of code changed in 1 file:
Update copyright.
9 lines of code changed in 9 files:
Update comment regarding system requirements for this utility.
1 lines of code changed in 1 file:
Adding back in the TIFF make variables. Note, when TIFF (and JPEG, etc) were ripped out of Uintah,
a lot of the infrastructure for them was left in (for example, configure kept checking for them), so
to put it back all I had to do was resurrect the TIFF vars in the Makefile (well, actually in
configVars.mk which is included into the Makefile).
M configVars.mk.in
- Add in HAVE_TIFF and TIFF_LIBRARY flags.
M StandAlone/tools/extractors/sub.mk
- Since I added back the HAVE_TIFF and TIFF_LIBRARY flags to the make system, I am reverting
the change to this sub.mk as it now (again) just works.
1 lines of code changed in 1 file:
I think TIFF support was yanked out of Uintah a long time ago, but Todd asked me to look at compiling the
left over particle2tiff.cc file. These commits allow for that to happen (assuming libtiff is installed
in the system library location correctly). I am not adding any configure support, so you will have to
manually >
M extractors/particle2tiff.cc
- Few minor tweeks to get the file to compile with the newerer Core. I have not actually tried running
it to see if it actually works.
M extractors/sub.mk
- Manually added "-ltiff" the LIBS variable. Before (I think) configure, figured this out for you.
- Also, to make this work, you need to manually comment out (use: #) the check for HAVE_TIFF. So do the following:
#ifeq ($(HAVE_TIFF),yes)
.
.
.
#endif
5 lines of code changed in 2 files: