Posted on December 10, 2008 by kurniawano
I have tried several player such as Kaffeine, and mplayer, but finally I ended up in Totem for my Kubuntu 8.10 intrepid. I need to install the additional plugins and extra plugins.
I can run the video streaming from one of the website that I usually watched.
Filed under: Uncategorized | Tagged: kubuntu, linux | Leave a Comment »
Posted on December 5, 2008 by kurniawano
When I tried to run my code in Hilbert cluster with 4 nodes and 4 cpus each node, I kept on getting this error
p15_26112: p4_error: interrupt SIGSEGV: 11
rm_l_15_26139: (699.613281) net_send: could not write to fd=5, errno = 32
Initial Guess …
Start NL Poisson…
dUin : 0.00106498
dUin : 0.00104582
dUin : 0.00100422
dUin : 0.000719826
dUin : 0.000220362
dUin : 1.35221e-05
dUin [...]
Filed under: Uncategorized | Leave a Comment »
Posted on December 4, 2008 by kurniawano
I just found an interesting site to help you find the required mathematical libraries for computation.
http://gams.nist.gov/
Filed under: Uncategorized | Tagged: libraries, programming | 1 Comment »
Posted on December 4, 2008 by kurniawano
to check the number of free processors:
mdiag -n
To check the status of the job, either you can use
qstat -a
or
checkjob -v PID
where PID is your job ID, you can use qstat -a to check your job PID. checkjob tells you the architecture and which processors the job is running.
Filed under: Uncategorized | Leave a Comment »
Posted on December 1, 2008 by kurniawano
Compared to installing in Turing (SGI Altix), I need to install the FFTW library and not specify F77 flag when installing IT++ in Hilbert.
./configure –prefix=$HOME/local CPPFLAGS=”-I$HOME/Download/boost_1_36_0 -I$HOME/local/include” LDFLAGS=”-L$HOME/local/lib”
While when installing in Darwin
./configure –prefix=$HOME/local CPPFLAGS=”-I$HOME/Download/boost_1_36_0 -I$HOME/local/include” LDFLAGS=-L$HOME/local/lib F77=ifort
Filed under: Uncategorized | Leave a Comment »
Posted on December 1, 2008 by kurniawano
I am installing IT++ in my compute servers SGI Altix (Turing). I want to use the Intel compiler MKL for building IT++ libraries. To do that:
export LDFLAGS=”-L/opt/intel/lib/64″
export CPPFLAGS=”-I/opt/intel/include -I/scratch/ihpcoka/Download/boost_1_36_0″
I used Boost libraries in my IT++ modification. And then do a configure
./configure –prefix=/scratch/ihpcoka/local CXX=icpc
Then type make, make check, and make install. During make check, I got [...]
Filed under: Uncategorized | 1 Comment »
Posted on December 1, 2008 by kurniawano
I am using IT++ for some of my code and I tried to parallelize it. It came to the point where I need to sum up all the vectors from all the process. So in MPI, I will need to use MPI_Reduce. My question is since IT++ vector is not an array, can we then [...]
Filed under: Uncategorized | Tagged: c++, IT++, mpi | Leave a Comment »