Installing and Configuring magma-1.3.1 on Intel MIC platform

Open discussion for MAGMA library (Matrix Algebra on GPU and Multicore Architectures)
Post Reply
hiteshkahale
Posts: 2
Joined: Wed May 27, 2015 6:39 am

Installing and Configuring magma-1.3.1 on Intel MIC platform

Post by hiteshkahale » Wed May 27, 2015 7:48 am

Hello friends for installing and configuring magmamic-1.3.1 on Intel MIC platform please follow the following steps:

1) Download the magmamic-1.3.1.tar.gz from http://icl.cs.utk.edu/magma/software/.

2) Copy the tar file to your host workplace.
Here the tar file is at ~/hitesh/magmamic-1.3.1.tar.gz

3) Extract the tar file using command

Code: Select all

tar -zxvf magmamic-1.3.1.tar.gz
to the current directory.

4) Go to the magmamic-1.3.1 folder

Code: Select all

cd  magmamic-1.3.1
5) If make.inc file is present then make the following changes or create new make.inc file.
a) Setting the MKL Root path:

Code: Select all

 MKLROOT = /opt/intel/composer_xe_2013.1.117/mkl 
b) Setting INC path:

Code: Select all

 INC=-I/opt/intel/mic1/coi/include 
6) After making the above changes run make command.

7) If the make command completed successful then go to testing folder

Code: Select all

 cd magmamic-1.3.1/testing/ 
.
Login to the MIC card and run any example by simply typing

Code: Select all

 ./testing_dgesv_mic 
.

Post Reply