Peter D. Barnes, Jr.
Peter D. Barnes, Jr.
New Issue for sst-core ---------------------- 1 - Detailed description of problem or enhancement Trying to set the thread count from Python doesn't work, using either of these calls: ```{py} nthreads...
`--num_threads` option is the only option which uses underscore `_` instead of dash `-` to separate words. Even the error message in `Config::setNumThreads` uses dash An option `-num-threads` should be...
New Issue for sst-core ---------------------- 1 - Detailed description of problem or enhancement HistogramStatistic does not handle floating data values (x axis) correctly, because * `m_binWidth` is of the wrong...
HDF5 exceptions are polymorphic, must be caught by ref not value. Patch [Catch exception by const ref](https://github.com/pdbj/sst-core/commit/00716437f19ac9cd152b6c78dff5fdcc1be01e74)
These two files are almost identical; only the first appears to be used: * `src/sst/core/sstpart.h` * `src/sst/core/part/sstpart.h` Here's the diff: ``` $ sdiff -s
[Edit to fix phold make command] New Issue for sst-core ---------------------- **1 - Detailed description of problem or enhancement** With `--enable-perf-tracking --enable-profile` during configure several of my models crash with...
If a component event send or receive counter, or total run time, is not registered no output for that item is generated. It would be easier to use if the...
It's often useful to document the internal SST configuration. This patch logs Config to the default simulator output, when verbose. Patch [Show SST configuration when verbose](https://github.com/pdbj/sst-core/commit/d3e86c13b6b365b3ce4d6bc18784c130a4428f96)
Configuring with `--enable-perf-tracking --enable-profile` doesn't compile, because some member variables and functions are only enabled with `__SST_DEBUG_EVENT_TRACKING` Patch [here](https://github.com/pdbj/sst-core/commit/81a5123558c03978f01508dfdec6a773e7ec5346)
When compiling with GCC-10 (10.2.1 and 10.3 on two different systems) I encountered a number of minor warnings, all fixed by this patch. This is based on v11.0.0_FINAL [0001-Fix-GCC10-compilation-warnings.patch.txt](https://github.com/sstsimulator/sst-core/files/7324887/0001-Fix-GCC10-compilation-warnings.patch.txt) .