MEX-files
 
In the Matlab-lab on sparse matrices, it was stated that we would fix the slow matrix-vector multiply with banded matrices. We will do that by linking Matlab with a compiled Fortran-routine from Netlib.


Fetch dgbmv.f from Netlib/BLAS. Write a MEX-file in C (you may use a wrapper m-file as well, if you like). You do not have to implement all the capabilities of dgbmv.f, it is sufficient that the MEX-file can handle y = B * x, where x and y are vectors and B is a square band matrix. It should be possible for the upper and lower bandwidths to be different.
Call your routine from Matlab and test it on some simple examples so you can see that everything works correctly.
Run your routine from Matlab and check the speedup compared to the sparse version. You must probably use faster BLAS (see below) to get any speedup.

If you change the C-code and recompile, you (may) have to clear the mex-function to see the changes. In help clear it says that     clear functions   removes all compiled M- and MEX-functions. This is the way to mex your program.

cp /chalmers/sw/sup64/matlab-2011b/bin/mexopts.sh .
chmod u+w mexopts.sh     add write permissons for you

Edit mexopts.sh and search for glnxa64

change
  CFLAGS='-ansi -D_GNU_SOURCE'
to
  CFLAGS='-Wall -std=c99 -D_GNU_SOURCE'

Use the default gfortran or you may have link-problems.

Now try to compile your C-file and Fortran files.

mex -f ./mexopts.sh bandsolve.c *.f

provided *.f would be the necessary Fortran-files.

You will get an error message:
Warning: You are using gcc version "4.1.2".  The version
 etc.
but it seems to work OK anyhow.

For better speed:

You may try to use the Intel MKL (comes with Matlab), I had problems using GotoBLAS with Matlab 2011. To use MKL:

Back