sst-core icon indicating copy to clipboard operation
sst-core copied to clipboard

SST Structural Simulation Toolkit Parallel Discrete Event Core and Services

Results 120 sst-core issues
Sort by recently updated
recently updated
newest added

Newer versions of xcode will no longer have a /usr/include in the path, meaning many macport/homebrew/default compilers will NOT bring basic library headers into the include path by default. The...

SST-Core

We currently only support output of integer/float types. There are certain scenarios where it would be useful to output strings (extra metadata fields). This is already done to a certain...

SST-Core

ComponentInfo just points to objects inside ConfigComponent, which means ComponentInfo is pointing to deleted memory. The main problems are Params and stat enable list. Params and EnableLists should really be...

SST-Core

This is a general cleanup of memory leaked at the end of the simulation so that valigrind/leak sanitizer are happy

SST-Core

I noticed that my clock handlers were only being called once unless my handler function returns false. I "get it", but it seems like this interesting behavior related to the...

Documentation

Passing NULL for the time base argument to configureLink indicates the (sub)component's current default time base should be used as the time base for the link. However, configureLink doesn't actually...

Bug

Histogram statistics are useful, but often require an inordinately large number of bins. There are cases where fixed linear bin widths (e.g. 1-10,11-20,21-30,...) are not necessary and logarithmic bins could...

Enhancement
SST-Statistics

GCC < 4.8.5 will accept the -std=c++11 flag, confusing the configure into thinking the compiler supports all of C++11. Previous versions of gcc support only a subset. Configure happily finishes,...

Enhancement

During config graph construction, zero-latency links should not be allowed. Error (or maybe warning) should be generated. Lack of error check leads to seeming deadlock in the application as it...

SST-Core

Code needed for serialize_serializable: ```` template class serialize { public: void operator()(std::shared_ptr& o, serializer& ser){ T* tmp = o.get(); serialize_intrusive_ptr(tmp, ser); o = std::shared_ptr(tmp); } }; ```` Also, should probably...

SST-Core