調べたこと、作ったことをメモしています。
こちらに移行中: https://blog.shimazu.me/

2013-04-21から1日間の記事一覧

MPI_Status型について

教科書間違っていた。 MPI_Recvをやろうとしたらstatusがなかなか取れなくて困った。 結局、MPI_Status型は以下。(openmpiのversionは1.4.5) typedef struct ompi_status_public_t MPI_Status; struct ompi_status_public_t { int MPI_SOURCE; int MPI_TAG; …

MPI installation on ubuntu server 12.04

Type a command below $ sudo aptitude install openmpi-bin libopenmpi-dev and after installation, check whether it has correctly done. #include <mpi/mpi.h> int main( int argc, char *argv[] ) { int myid, numprocs; volatile int i; MPI_Init( &argc, &argv </mpi/mpi.h>…

win7 on kvm ( Host OS is Ubuntu 12.04 server )

かなり簡単で驚いた。 参考1: qemu,kvmでブリッジ接続 参考2:Ubuntu 12.04にKVMをインストールし、bridge接続の設定を行う 参考3:Ubuntu 12.04(64bit) + KVMにWindows Server 2008 R2をインストール まず、一応CDからisoを作成。 $ dd if=/dev/cdrom o…