Discuss, Learn and be Happy דיון בשאלות

help brightness_4 brightness_7 format_textdirection_r_to_l format_textdirection_l_to_r

מה תפקידו של ה- communicator בפונקציות MPI?

1
done
by
מיין לפי

בחלק זה התבקשנו לחבר 2 שאלות הקשורות להרצאות 8-5: מה עושה הפקודה Allreduce_MPI:

1
done
by
מיין לפי

מהי משמעות המודל Join and Fork?

1
done
by
מיין לפי

If you call MPI_Send and there is no matching receive, which of the following are possible outcomes?

1
done
by
מיין לפי

The MPI receive routine has a parameter “count” – what does this mean?

1
done
by
מיין לפי

#include <mpi.h> #include <string.h> #include <stdio.h> #include <stdlib.h> MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD, &numprocs); MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Status status; if (rank == 0) { //master actions avg = rank; for(int proc = 1; proc < 5; proc++){ // sends the start matrix to the processors MPI_Send(&avg, 1, MPI_FLOAT,proc, 1, MPI_COMM_WORLD); } MPI_Recv(&avg, 1, MPI_FLOAT, rank +1, 2, MPI_COMM_WORLD, &status) else { MPI_Recv(&avg, 1, MPI_FLOAT, rank, 1, MPI_COMM_WORLD, &status) avg = (avg * rank) MPI_Send(&avg, 50, MPI_FLOAT, 0, 2, MPI_COMM_WORLD); }

1
done
בפקודת ה- RECV_MPI של המעבדים המשניים הכנסנו שהם מקבלים מידע מהמעבד הבא בתור אחריהם במקום לקבל ממעבד 0,
by
מיין לפי

שאלה 1 : מה מהבאים נכון עבור openMP?

1
done
by
מיין לפי

המושג condition race מתייחס ל:

1
done
by
מיין לפי

מהו OpenMP ?

1
done
by
מיין לפי