Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 38 (100.0%) | 211 (100.0%) | 5.5 |
harman | 7 (18.4%) | 150 (71.1%) | 21.4 |
ahumphrey | 6 (15.8%) | 39 (18.5%) | 6.5 |
jas | 20 (52.6%) | 17 (8.1%) | 0.8 |
dav | 5 (13.2%) | 5 (2.4%) | 1.0 |
Fix memory usage reporting bug on Vulcan/BGQ - the bug occurred when John cleaned out old checks (specifically _AIX) for the ProcessInfo::isSupported routine. _AIX apparently is a historical remnant (AIX was IBM's old OS) but works on BGQ machines and allowed isSupported to return true. I have replaced the previously used _AIX with __bgq__ which is more clear.
1 lines of code changed in 2 files:
Replace usage of NULL macro (type int) with nullptr (pointer literal of type: nullptr_t).
nullptr is implicitly convertible and comparable to any pointer type or pointer-to-member type, but is not implicitly comparable to integral types, except that it is convertible to bool (explicitly).
3 lines of code changed in 5 files:
Add Uintah namespace.
1 lines of code changed in 1 file:
Move non-conflicting classes that were in SCIRun namespace to Uintah namespace.
8 lines of code changed in 11 files:
Fix linking issue when using MPI rank in output... Needed to link in Uintah/Parallel lib.
4 lines of code changed in 3 files:
Backout previous commit and punt. Bigmac won't link with:
cout << Uintah::Parallel::getMPIRank()<< "message" << endl;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
My desktop will compile it with either gcc and clang..
6 lines of code changed in 2 files:
createSubdirPlus
- added MPI rank to the warning message.
3 lines of code changed in 2 files:
In prep for PIDX changes moved code that repeatedly tries to create a sub-directory upstream into the Dir class.
Added a descriptive warning statement if one of the cores is having problems creating the subdir.
I'm open to suggestions on the method name
Added dividers.
141 lines of code changed in 3 files:
Fix incompliant c++11 code flagged by clang compiler:1.) explicit instantiations need to be in namespaces2.) match delete[] with new[] (should fix a small memory leak)3.) disambiguate method call in Socket class4.) fix CellInformation, declared as a class but defined as a struct
36 lines of code changed in 1 file:
Update copyright date to 2016.
8 lines of code changed in 8 files: