Posted on February 23, 2009 by kurniawano
I am having problem running an openmpi program. It kept on giving me this error:
[opto023:31621] pls:tm: failed to poll for a spawned proc, return status = 17002
[opto023:31621] [0,0,0] ORTE_ERROR_LOG: In errno in file ../../../../../orte/mca/rmgr/urm/rmgr_urm.c at line 462
[opto023:31621] mpirun: spawn failed with errno=-11
I after I searched in the net, it might be due to OpenMPI and [...]
Filed under: Uncategorized | Tagged: mpi, parallel | Leave a Comment »
Posted on February 18, 2009 by kurniawano
I downloaded it++ 4.0.6 and tried to compile using MKL library. To do that, I need first to set the environment path
export LDFLAGS=-L/opt/intel/Compiler/11.0/081/mkl/lib/32/
export CPPFLAGS=-I/opt/intel/Compiler/11.0/081/mkl/include
and then I run the configure with this option
./configure –prefix=$HOME/local F77=gfortran –with-blas=”-lmkl_intel -lmkl_sequential -lmkl_core -lpthread” –with-lapack=”-lmkl_lapack”
With this settings configure can detect my MKL library
UPDATE: though it can detect MKL, but it gives [...]
Filed under: Uncategorized | Tagged: c++, IT++, programming | Leave a Comment »
Posted on February 13, 2009 by kurniawano
download the source code from this page.
untar the file with
% tar xzvf dx-4.4.4.tar.gz
cd to the directory and read the README file for detail installation steps. In short, simply type
% ./configure –prefix=<your directory to install>
% make
% make install
Filed under: Uncategorized | 1 Comment »
Posted on February 13, 2009 by kurniawano
I found a nice C++ linear algebra library called Armadillo by Conrad. I will write short posts to describe how to use it, and I will begin on how to install it.
First, download the source tarball from this link
untar the tar.gz file, and enter the directory.
The installation uses CMake, so if you don’t have, you [...]
Filed under: Uncategorized | Tagged: armadillo | Leave a Comment »