jpkenny
jpkenny
Core's memory use looks buggy to many memory debugging tools. For component debugging it is impractical to compile sst-core using -fsanitize=address because so many things in core get flagged as...
The MPI all gather app in skeletons/tests: ``` #include #include #include int main(int argc, char** argv) { MPI_Init(&argc, &argv); int rank, size; MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Comm_size(MPI_COMM_WORLD, &size); if (rank == 0){...
Trying to use a torus with any dimension of size 1 will cause a segfault during switch connection. This is particularly bad when it's generated automatically by macro because topology...
There are input snippets in sst-macro/configurations that no longer produce valid inputs. For example "router {name = minimal}" in exa2_pisces.ini is no longer valid because routers are now specific to...
Jeremy said so
Simple CMake and Autotools test projects have been added for the purpose of testing sstcc/sst++ compiler wrappers in "configure mode". These currently need to be run manually. Tests of this...