Skip to content

Threaded MPI examples for the Adapteva Epiphany architecture

Notifications You must be signed in to change notification settings

censix/mpi-epiphany

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MPI Epiphany Examples

The examples below use the threaded MPI model for the Adapteva Epiphany architecture, specifically the Parallella platform. All applications are distributed across the 16 Epiphany cores.

The codes were developed by the US Army Research Laboratory, Computational Sciences Division, Computing Architectures Branch.

The examples were tested on the 2015 Parallella image.

In order to build and test this example, at present you need to download and install a preview release of the libcoprthr_mpi library that has been made to work with the COPRTHR SDK version 1.6.1. The preview library is presently free to download and use for experimentation (non-commercial use).

-JAR Updated 6/11/15

Cannon's Algorithm for Dense Matrix-Matrix Multiply

This software demonstrates a high performance implementation of Cannon's Algorithm for matrix multiplication for two-dimensional network meshes. The communication is blocking and uses the MPI_Sendrecv_replace routine for communication between cores.

View ./cannon source code or the README.

2D Fast Fourier Transform (FFT)

This demonstrates a 2D FFT with a 2D domain decomposition and uses the MPI_Sendrecv_replace for communication

View ./fft2d source code.

N-body Particle Simulation

This example demonstrates a high performance gravitational particle interaction (N-body simulation) using MPI_Sendrecv_replace for convenience.

View ./nbody source code or the README.

Five-Point 2D Stencil Update

This is a high performance example of a finite difference scheme using a 5-point stencil update where a solution is iterated until convergence and boundary data is communicated between neighboring cores over the two-dimensional domain decomposition.

View ./stencil source code.

About

Threaded MPI examples for the Adapteva Epiphany architecture

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 95.5%
  • Makefile 4.5%