Difference between revisions of "Projects (USIU)"

From Raspberry Pi Min-Grant project
Jump to: navigation, search
Line 1: Line 1:
=== [[Raspberry Pi Min-Grant project:Pi Based Cluster (USIU)|Project: Pi Based Cluster]] ===
+
=== Project: Pi Based Cluster ===
  
Course: APT 4030 - Parallel Computing
+
<u>Course: APT 4030 - Parallel Computing</u>
  
[[About: (USIU)|About:]]
+
'''About:'''
  
 
In this project, we will build a cluster of identical raspberry pi nodes, networked together and running parallel processing software that allows each node in the cluster to share data and computation.
 
In this project, we will build a cluster of identical raspberry pi nodes, networked together and running parallel processing software that allows each node in the cluster to share data and computation.
  
[[Objective(s): (USIU)|Objective(s):]]
+
'''Objective(s):'''
  
 
Building a cluster computer powered by raspberry Pi that could be used to develop and run parallel and distributed programs. In doing so, the following goals could be achieved.
 
Building a cluster computer powered by raspberry Pi that could be used to develop and run parallel and distributed programs. In doing so, the following goals could be achieved.
  
*Practical understanding of building parallel systems.
+
Practical understanding of building parallel systems.
 +
 
 
*Experiment with different configurations to achieve better performance.
 
*Experiment with different configurations to achieve better performance.
 
*Familiarity with MPI (Message Passing Interface) API for parallel programming.
 
*Familiarity with MPI (Message Passing Interface) API for parallel programming.
 
*Familiarity with raspberry pi micro computers useful for rapid hardware prototyping.
 
*Familiarity with raspberry pi micro computers useful for rapid hardware prototyping.
  
[[Building the system: (USIU)|Building the system:]]
+
Building the system:
 
 
[[Components: (USIU)|Components:]]
 
  
Computer hardware -
+
Components:
  
 
*Raspberry Pi Model B
 
*Raspberry Pi Model B
Line 26: Line 25:
 
*Ethernet cables
 
*Ethernet cables
 
*Power supply
 
*Power supply
*Linux OS (Wheezy)
+
*Linux OS
 
*There is an array of different possibilities.
 
*There is an array of different possibilities.
 
*MPI library
 
*MPI library
Line 33: Line 32:
 
*A switch that we can use without interruption during the lab works.
 
*A switch that we can use without interruption during the lab works.
  
[[Implementation: (USIU)|Implementation:]]
+
'''Implementation:'''
  
 
Ideally the project will be implemented in stages, starting with configuring the first two nodes and then scaling to add all other additional nodes.
 
Ideally the project will be implemented in stages, starting with configuring the first two nodes and then scaling to add all other additional nodes.
  
[[Resources: (USIU)|Resources:]]
+
'''Resources:'''
  
There are many resources that we will use including Raspberry Pi Foundation[https://www.raspberrypi.org/ https://www.raspberrypi.org/]
+
There are many resources that we will use including Raspberry Pi Foundation https://www.raspberrypi.org/
  
Prof Simon Cox, Making a Raspberry pi super computer, University of Southampton [http://coen.boisestate.edu/ece/raspberry-pi/ http://coen.boisestate.edu/ece/raspberry-pi/]
+
Prof Simon Cox, Making a Raspberry pi super computer, University of Southampton http://coen.boisestate.edu/ece/raspberry-pi/
  
[[Configuring the nodes, step by step guide (USIU)|Configuring the nodes, step by step guide]]
+
Configuring the nodes, step by step guide
  
[[First, configure the first node (USIU)|First, configure the first node]]
+
*'''First, configure the first node'''
  
 
When this is done, its easier to clone as many nodes as wanted.
 
When this is done, its easier to clone as many nodes as wanted.
  
#Get the OS image raspberrypi.org/download
+
1.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Get the OS image raspberrypi.org/download
  
 
After many false starts, we were content to just use Rasbian Weezy 5.5
 
After many false starts, we were content to just use Rasbian Weezy 5.5
  
#Get image into a the sdcard
+
2.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Get image into a the sdcard
  
 
On Linux:
 
On Linux:
  
#dd if=/media/yourMachine/Images/2015-05-05-raspbian-wheezy.img of=/dev/sdb bs=512 conv=noerror,sync
+
<span style="font-family:courier new,courier,monospace">#dd if=/media/yourMachine/Images/2015-05-05-raspbian-wheezy.img of=/dev/sdb bs=512 conv=noerror,sync</span>
  
#Boot the Pi
+
3.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Boot the Pi
  
 
Great suspense it anything did not go as planned.
 
Great suspense it anything did not go as planned.
Line 65: Line 64:
 
If there is an error with the card or any other thing, nothing will show up on the screen, if the Pi is overwhelmed it will take forever to boot. Rasbian is ideal because it has been tested and has a descent first boot time.
 
If there is an error with the card or any other thing, nothing will show up on the screen, if the Pi is overwhelmed it will take forever to boot. Rasbian is ideal because it has been tested and has a descent first boot time.
  
#Configuration on first boot
+
4.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Configuration on first boot
  
 
These configurations can be done later with raspi-config or ideally done on the first boot.
 
These configurations can be done later with raspi-config or ideally done on the first boot.
  
*Expand image to fill card
+
•&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Expand image to fill card
*Change the password
+
 
 +
•&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Change the password
  
laxmi
+
<span style="font-family:courier new,courier,monospace">laxmi</span>
  
*Change hostname (node1 or nodex)
+
•&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Change hostname (node1 or nodex)
  
#Re boot
+
5.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Re boot
  
user: pi (has root priviledges) password: laxmi
+
user: <span style="font-family:courier new,courier,monospace">pi</span> (has root priviledges) password: <span style="font-family:courier new,courier,monospace">laxmi</span>
  
 
Refresh update repo packages and update the software
 
Refresh update repo packages and update the software
  
&#x5B;&#x5B;|#sudo apt-get update && sudo apt-get upgrade -y&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#sudo apt-get update && sudo apt-get upgrade -y</span>
  
 
Choose your poison: I prefer having my emacs
 
Choose your poison: I prefer having my emacs
  
&#x5B;&#x5B;|#sudo apt-get install emacs&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#sudo apt-get install emacs</span>
  
(:( you only get version 23, will have to compile to use version 24)
+
you only get version 23, will have to compile to use version 24)
  
#Refresh and update the softwares, if not done yet.
+
6. Refresh and update the softwares, if not done yet.
  
&#x5B;&#x5B;|#sudo apt-get update && sudo apt-get upgrade -y&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#sudo apt-get update && sudo apt-get upgrade -y</span>
  
#Get Fortran, (strange but we need it)
+
7. Get Fortran, (strange but we need it)
  
&#x5B;&#x5B;|#sudo apt-get install gfortran&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#sudo apt-get install gfortran</span>
  
#Before getting Argonne MPICH
+
8. Before getting Argonne MPICH
  
Resource:[http://www.mpich.org/documentation/guides/ http://www.mpich.org/documentation/guides/]
+
Resource: http://www.mpich.org/documentation/guides/
  
 
The have great resources not just the the MPICH library
 
The have great resources not just the the MPICH library
  
&#x5B;&#x5B;|#mkdir /home/pi/mpich3 $ cd ~/mpich3&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#mkdir /home/pi/mpich3 $ cd ~/mpich3</span>
  
#Get MPICH sources from Argonne
+
9. Get MPICH sources from Argonne
  
#wget [http://www.mpich.org/static/downloads/3.1.4/mpich-3.1.4.tar.gz http://www.mpich.org/static/downloads/3.1.4/mpich-3.1.4.tar.gz]
+
<span style="font-family:courier new,courier,monospace">#wget http://www.mpich.org/static/downloads/3.1.4/mpich-3.1.4.tar.gz</span>
  
Resource: [http://www.mpich.org/downloads http://www.mpich.org/downloads] - Get latest stable
+
Resource: http://www.mpich.org/downloads - Get latest stable
  
#Unpack them.
+
10. Unpack them.
  
#tar xfz mpichXXX.tar.gz
+
<span style="font-family:courier new,courier,monospace">#tar xfz mpichXXX.tar.gz</span>
  
#Planning a clean place for install
+
11. Planning a clean place for install
  
&#x5B;&#x5B;|#sudo mkdir /home/rpimpi/&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#sudo mkdir /home/rpimpi/</span>
  
 
#sudo mkdir /home/rpimpi/mpich3-install
 
#sudo mkdir /home/rpimpi/mpich3-install
  
#Make a build directory, and go to the build
+
12. Make a build directory, and go to the build
  
&#x5B;&#x5B;|#mkdir /home/pi/mpich_build $ cd /home/pi/mpich_build&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#mkdir /home/pi/mpich_build $ cd /home/pi/mpich_build</span>
  
#Configure the build
+
13. Configure the build
  
 
This will take a while, you can get the cards ready, you can play while the configurations takes place.
 
This will take a while, you can get the cards ready, you can play while the configurations takes place.
  
&#x5B;&#x5B;|#sudo /home/pi/mpich3/mpichXXX/configure -prefix=/home/rpimpi/mpich3- install&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#sudo /home/pi/mpich3/mpichXXX/configure -prefix=/home/rpimpi/mpich3- install</span>
  
#Make
+
14. Make
  
 
What ever it took the last, you can +1
 
What ever it took the last, you can +1
  
&#x5B;&#x5B;|# &#x5D;&#x5D;sudo make
+
<span style="font-family:courier new,courier,monospace">#sudo make</span>
  
#Install the files
+
15. Install the files
  
 
It can take a bit of time, but not any way close to the last two stages.
 
It can take a bit of time, but not any way close to the last two stages.
  
[[$ sudo make install (USIU)|$ sudo make install]]
+
<span style="font-family:courier new,courier,monospace">#sudo make install</span>
  
#Add the place that you put the install to your PATH
+
16. Add the place that you put the install to your PATH
  
[[$ export PATH=$PATH:/home/rpimpi/mpich3-mstall/bin (USIU)|$ export PATH=$PATH:/home/rpimpi/mpich3-mstall/bin]]
+
<span style="font-family:courier new,courier,monospace">#export PATH=$PATH:/home/rpimpi/mpich3-mstall/bin</span>
  
#Or Note to permanently put this on the PATH you will need to edit .profile
+
17. Or Note to permanently put this on the PATH you will need to edit .profile
  
[[$emacs -/.profile (USIU)|$emacs -/.profile]]
+
<span style="font-family:courier new,courier,monospace">#emacs -/.profile</span>
  
 
and add lines below:
 
and add lines below:
  
#Add MPI to path (This is just a comment for later) PATH="$PATH:/home/rpimpi/mpich3-install/bin"
+
<span style="font-family:courier new,courier,monospace">#Add MPI to path (This is just a comment for later) PATH="$PATH:/home/rpimpi/mpich3-install/bin"</span>
 +
 
 +
18.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Verify if the install were succesful
 +
 
 +
<span style="font-family:courier new,courier,monospace">#which mpicc /home/rpimpi/mpich3-install/mpicc $ which mpiexec</span>
  
#Verify if the install were succesful
+
19. Go /home and set a place for your first test
  
&#x5B;&#x5B;|#which mpicc&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#cd ~<br/></span>
  
/home/rpimpi/mpich3-install/mpicc $ which mpiexec
+
<span style="font-family:courier new,courier,monospace">#mkdir mpi_first_test $ cd mpi_first_test</span>
  
#Go /home and set a place for your first test
+
20.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Now testing MPI on single node
  
&#x5B;&#x5B;|#cd ~&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#mpiexec -f machinefile -n &lt;number&gt; hostname</span>
  
#mkdir mpi_first_test $ cd mpi_first_test
+
where machine file contains a list of IP addresses (in this case just one) for the machines
  
#Now testing MPI on single node
+
21. How this supposed to be done
  
&#x5B;&#x5B;|#mpiexec -f machinefile -n &lt;number&gt; hostname&#x5D;&#x5D;
+
a) Get your IP address
  
where machine file contains a list of IP addresses (in this case just one) for the machines
+
<span style="font-family:courier new,courier,monospace">#ifconfig</span>
  
#How this supposed to be done
+
b) Put this into a single file called machinefile
<ol style="list-style-type:lower-alpha;">
 
<li>Get your IP address</li>
 
</ol>
 
  
&#x5B;&#x5B;|#ifconfig&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace">#emacs machinefile</span>
<ol style="list-style-type:lower-alpha;">
 
<li>Put this into a single file called machinefile</li>
 
</ol>
 
  
&#x5B;&#x5B;|#emacs machinefile&#x5D;&#x5D;
+
c)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Add this line:
<ol style="list-style-type:lower-alpha;">
 
<li>Add this line:</li>
 
</ol>
 
  
192.168.1.161 [or the ip is ... ]
+
<span style="font-family:courier new,courier,monospace">192.168.1.161 [or the ip is ... ]</span>
  
#Now test if the machinefile
+
22.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Now test if the machinefile
  
&#x5B;&#x5B;|# mpiexec -f machinefile ~n 1 hostname&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace"># mpiexec -f machinefile ~n 1 hostname</span>
  
 
Output should be: node1 ('hostname')
 
Output should be: node1 ('hostname')
  
#Little C code using MPI on Pi to calculate Pi
+
23. Little C code using MPI on Pi to calculate Pi
  
 
Don't worry, we shall not write the c code our selves, but MPICH has some example codes we can run.
 
Don't worry, we shall not write the c code our selves, but MPICH has some example codes we can run.
  
&#x5B;&#x5B;|# cd /home/pi/mpi_fist_test&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace"># cd /home/pi/mpi_fist_test</span>
  
&#x5B;&#x5B;|# mpiexec -f machinefile -n 2 /home/pi/mpich3/examples/cpi&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace"># mpiexec -f machinefile -n 2 /home/pi/mpich3/examples/cpi</span>
  
 
Output is should be
 
Output is should be
Line 211: Line 206:
 
pi is approximately 3.141 5926544231318, Error is 0.0000000008333387
 
pi is approximately 3.141 5926544231318, Error is 0.0000000008333387
  
#[[Celebrate! (USIU)|Celebrate!]]
+
24.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Celebrate!
  
 
This calls for a celebration! (Seriously!)
 
This calls for a celebration! (Seriously!)
  
Order a bottle from Bourgogne and celebrate (and clone the node).
+
25.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Shut down
 
 
#[[Shut down (USIU)|Shut down]]
 
  
&#x5B;&#x5B;|# sudo poweroff&#x5D;&#x5D;
+
<span style="font-family:courier new,courier,monospace"># sudo poweroff</span>

Revision as of 22:30, 28 July 2015

Project: Pi Based Cluster

Course: APT 4030 - Parallel Computing

About:

In this project, we will build a cluster of identical raspberry pi nodes, networked together and running parallel processing software that allows each node in the cluster to share data and computation.

Objective(s):

Building a cluster computer powered by raspberry Pi that could be used to develop and run parallel and distributed programs. In doing so, the following goals could be achieved.

Practical understanding of building parallel systems.

  • Experiment with different configurations to achieve better performance.
  • Familiarity with MPI (Message Passing Interface) API for parallel programming.
  • Familiarity with raspberry pi micro computers useful for rapid hardware prototyping.

Building the system:

Components:

  • Raspberry Pi Model B
  • Storage - SD cards
  • Ethernet cables
  • Power supply
  • Linux OS
  • There is an array of different possibilities.
  • MPI library
  • MPICH or OpenMPI
  • Ethernet switch and Router
  • A switch that we can use without interruption during the lab works.

Implementation:

Ideally the project will be implemented in stages, starting with configuring the first two nodes and then scaling to add all other additional nodes.

Resources:

There are many resources that we will use including Raspberry Pi Foundation https://www.raspberrypi.org/

Prof Simon Cox, Making a Raspberry pi super computer, University of Southampton http://coen.boisestate.edu/ece/raspberry-pi/

Configuring the nodes, step by step guide

  • First, configure the first node

When this is done, its easier to clone as many nodes as wanted.

1.            Get the OS image raspberrypi.org/download

After many false starts, we were content to just use Rasbian Weezy 5.5

2.            Get image into a the sdcard

On Linux:

#dd if=/media/yourMachine/Images/2015-05-05-raspbian-wheezy.img of=/dev/sdb bs=512 conv=noerror,sync

3.            Boot the Pi

Great suspense it anything did not go as planned.

If there is an error with the card or any other thing, nothing will show up on the screen, if the Pi is overwhelmed it will take forever to boot. Rasbian is ideal because it has been tested and has a descent first boot time.

4.            Configuration on first boot

These configurations can be done later with raspi-config or ideally done on the first boot.

•             Expand image to fill card

•             Change the password

laxmi

•             Change hostname (node1 or nodex)

5.            Re boot

user: pi (has root priviledges) password: laxmi

Refresh update repo packages and update the software

#sudo apt-get update && sudo apt-get upgrade -y

Choose your poison: I prefer having my emacs

#sudo apt-get install emacs

you only get version 23, will have to compile to use version 24)

6. Refresh and update the softwares, if not done yet.

#sudo apt-get update && sudo apt-get upgrade -y

7. Get Fortran, (strange but we need it)

#sudo apt-get install gfortran

8. Before getting Argonne MPICH

Resource: http://www.mpich.org/documentation/guides/

The have great resources not just the the MPICH library

#mkdir /home/pi/mpich3 $ cd ~/mpich3

9. Get MPICH sources from Argonne

#wget http://www.mpich.org/static/downloads/3.1.4/mpich-3.1.4.tar.gz

Resource: http://www.mpich.org/downloads - Get latest stable

10. Unpack them.

#tar xfz mpichXXX.tar.gz

11. Planning a clean place for install

#sudo mkdir /home/rpimpi/

  1. sudo mkdir /home/rpimpi/mpich3-install

12. Make a build directory, and go to the build

#mkdir /home/pi/mpich_build $ cd /home/pi/mpich_build

13. Configure the build

This will take a while, you can get the cards ready, you can play while the configurations takes place.

#sudo /home/pi/mpich3/mpichXXX/configure -prefix=/home/rpimpi/mpich3- install

14. Make

What ever it took the last, you can +1

#sudo make

15. Install the files

It can take a bit of time, but not any way close to the last two stages.

#sudo make install

16. Add the place that you put the install to your PATH

#export PATH=$PATH:/home/rpimpi/mpich3-mstall/bin

17. Or Note to permanently put this on the PATH you will need to edit .profile

#emacs -/.profile

and add lines below:

#Add MPI to path (This is just a comment for later) PATH="$PATH:/home/rpimpi/mpich3-install/bin"

18.          Verify if the install were succesful

#which mpicc /home/rpimpi/mpich3-install/mpicc $ which mpiexec

19. Go /home and set a place for your first test

#cd ~

#mkdir mpi_first_test $ cd mpi_first_test

20.          Now testing MPI on single node

#mpiexec -f machinefile -n <number> hostname

where machine file contains a list of IP addresses (in this case just one) for the machines

21. How this supposed to be done

a) Get your IP address

#ifconfig

b) Put this into a single file called machinefile

#emacs machinefile

c)            Add this line:

192.168.1.161 [or the ip is ... ]

22.          Now test if the machinefile

# mpiexec -f machinefile ~n 1 hostname

Output should be: node1 ('hostname')

23. Little C code using MPI on Pi to calculate Pi

Don't worry, we shall not write the c code our selves, but MPICH has some example codes we can run.

# cd /home/pi/mpi_fist_test

# mpiexec -f machinefile -n 2 /home/pi/mpich3/examples/cpi

Output is should be

Process 0 of 2 is on raspberrypi Process 1 of 2 is on raspberrypi

pi is approximately 3.141 5926544231318, Error is 0.0000000008333387

24.          Celebrate!

This calls for a celebration! (Seriously!)

25.          Shut down

# sudo poweroff