pilgrim icon indicating copy to clipboard operation
pilgrim copied to clipboard

Logger for MPI communication

Results 6 pilgrim issues
Sort by recently updated
recently updated
newest added

Hi, Thank you for the Pilgrim Tool. Very nice one. I am interested in processing Pilgrim traces to have some information about app performance. I have two questions: 1. I...

# Issue description Whenever I try to run Pilgrim to trace a MPI program running on a local machine, I have no issue. However, once I try to run it...

From what I understand, currently, Pilgrim does not provide any way to read traces other than using `pilgrim2text`, and then parsing the generated `.txt` files. Is it planned to provide...

Any scientific application (LAMMPS, WarpX) I try to plug pilgrim into seems to end up not being able to run at all. For example, I used a very simple LJ...

Pilgrim uses several methods to compress time information (interval and duration). It seems there is no decoder for time information in pilgrim_app_generator.c. The output of time information to intervals.dat and...

Consider this simple test case: ``` #include #include #include #include int main(int argc, char* argv[]) { int my_rank; MPI_Info info; MPI_Comm newcomm; int ncid; MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &my_rank); MPI_Info_create(&info); MPI_Info_set(info,...