Skip to content

MPI

Category: Parallelism · Status: stub

One line: The Message Passing Interface: separate processes, often on separate machines, exchanging messages — the standard for distributed-memory parallel programs.

Also called: Message Passing Interface.

How it connects

flowchart LR
  n_message_passing["Message passing"]
  n_mpi["MPI"]
  n_process["Process"]
  n_mpi -->|uses| n_message_passing
  n_mpi -->|uses| n_process
  classDef center stroke-width:3px
  class n_mpi center
  classDef outside stroke-dasharray: 4 3
  class n_message_passing,n_process outside

Where to read more