Search:

Type: Posts; User: shrek

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    13,197

    I called MPI_Type_commit(). My problem is that my...

    I called MPI_Type_commit(). My problem is that my structure contains pointer elements. I allocate memory to them using malloc later. So I am not sure how I should initialise the displacement and the...
  2. Replies
    8
    Views
    13,197

    My program runs correctly before I send ant. But...

    My program runs correctly before I send ant. But when I try to send ant I get this error: collective abort of all ranks, killed by signal 11.
    I was unsure about what displacement to give. But I...
  3. Replies
    8
    Views
    13,197

    sending a structure variable through MPI in C

    I need to send a variable of this structure type from master processor to slave processor.



    struct single_ant
    {
    long tour_length;
    long *tour;
    long *visited;
    };
Results 1 to 3 of 3