dash
dash copied to clipboard
DASH, the C++ Template Library for Distributed Data Structures with Support for Hierarchical Locality for HPC and Data-Driven Science
This PR proposes test cases for StoreHDF5::read and StoreHDF5::write with dash::Matrix. Test cases consist of 1D and 2D matrices with the default and unsigned index type.
Make the team hierarchy a tree and allow for cloning teams, which is useful in multi-threaded environments. Fixes #658
Mostly follow the steps listed here : https://github.com/dash-project/dash/issues/616 But, no luck on my Mac 10.14.6. After much of pain to install PAPI, remove -lrt and other issues like malloc.h. Code...
Hi, I am testing the HDF5 support in DASH. It reports compile error for 1D data at compile time. Could you help to look at it ? See below for...
Hi, Is it possible to create a local matrix per MPI process? It is like MPI_COMM_SELF for file creation. Then each MPI process access its own data. Thanks, Bin
The intel compiler 18.5 complains about calling a `delete` member function: https://github.com/dash-project/dash/blob/964c45ab23b352bae5a777c6da57108d100eb0a3/dash/include/dash/memory/GlobStaticMem.h#L137 Here are the errors: ``` mpiicpc -c -o multigrid3d.o -DNDEBUG -I. -DBOOST_ALL_NO_LIB -O3 -no-prec-div -ansi-alias -xCORE-AVX512 -std=c++14 -DSPEC_LP64...
In my stencil benchmark I use the halo wrapper as in ```ex.02.matrix.halo.heat_equation```. When building with the ```feat-halo``` branch my code deadlocks at ```halo.update_async();``` when running the code on more than...