*並列処理プログラミング [#k617356d] -[[参考1:http://cm.mech.kyushu-u.ac.jp/~shioya/mpi/index.html]] -[[参考2:http://www.cc.kyushu-u.ac.jp/scp/system/general/GP7000F/05_C.html]] -OpenMP --[[link1:http://www.na.cse.nagoya-u.ac.jp/~reiji/lect/hpc02/OpenMPintro.html]] --[[link2:http://tech.ckme.co.jp/openmp.shtml]] -MPI --[[link1:http://tech.ckme.co.jp/mpi.shtml]] -クラスタ **LINK [#x8b234e2] -[[FFT ひねり 並列 - Google 検索:http://www.google.co.jp/search?sourceid=navclient&hl=ja&ie=UTF-8&rlz=1T4SUNA_jaJP237JP237&q=FFT+%e3%81%b2%e3%81%ad%e3%82%8a%e3%80%80%e4%b8%a6%e5%88%97]] -- SIZE(10){2009-08-18 (火) 13:22:55} -http://olab.is.s.u-tokyo.ac.jp/psc96/winners/araki.html -- SIZE(10){2009-08-18 (火) 13:20:56} -http://www.na.cse.nagoya-u.ac.jp/~yamamoto/lectures/parallelFFT/parallelFFT1.PDF -- SIZE(10){2009-08-18 (火) 13:20:14} -[[Parallel FFTW:http://www.fftw.org/parallel/parallel-fftw.html]] -- SIZE(10){2009-08-18 (火) 13:07:34} -[[fftwの使い方:仙台単身赴任生活:So-net blog:http://decafish.blog.so-net.ne.jp/2007-10-06]] -- SIZE(10){2009-08-18 (火) 12:18:13} -[[FFTW Tips:http://www.sip.eee.yamaguchi-u.ac.jp/kou/fftw.html]] -- SIZE(10){2009-08-18 (火) 12:17:59} -[[141 WebLog 高速フーリエ変換ライブラリ FFTW ver 3 の使い方:http://wwww.vis.ne.jp/mt/archives/000680.html]] -- SIZE(10){2009-08-18 (火) 12:17:42} -[[FFT Package 1-dim / 2-dim:http://www.kurims.kyoto-u.ac.jp/~ooura/fft-j.html]] -- SIZE(10){2009-08-18 (火) 12:17:27} -[[学期末プロジェクト:並列FFT:http://www.ueda.info.waseda.ac.jp/~mizuno/kokyuu/fft/]] -- SIZE(10){2009-08-18 (火) 12:17:11} -[[FFT (高速フーリエ・コサイン・サイン変換) の概略と設計法:http://www.kurims.kyoto-u.ac.jp/~ooura/fftman/index.html]] -- SIZE(10){2009-08-18 (火) 12:16:46} -http://円周率.jp/method/fft/ -- SIZE(10){2009-08-18 (火) 12:16:24} -[[link1:http://www.na.cse.nagoya-u.ac.jp/~reiji/misc/para-intro.html]] -[[link2:http://tech.ckme.co.jp/]] -[[link3:http://www.cs.hiroshima-u.ac.jp/~yasuaki/dokuwiki/doku.php?id=mpi:mpi]] -[[link4:http://www.fireproject.jp/pc_cluster/mpi/index.html]] -[[link5:http://mikilab.doshisha.ac.jp/dia/research/report/2005/0820/002/report20050820002.html]] -[[link6:http://geant4.kek.jp/~iwai/wiki/index.php?MPI]] **openMPI [#n1b95797] gunzip -c openmpi-1.3.3.tar.gz | tar xf - cd openmpi-1.3.3 ./configure --prefix=/usr/local make all install - /usr/local に展開した場合、/usr/local/etc内に -- openmpi-default-hostfile --mpirun --prefix /usr/local/openmpi -machinefile hosts -n 3 mpit3 - /etc/ld.so.conf というファイルに、MPIライブラリファイルのあるディレクトリを加えておく。 include /usr/local/openmpi-1.2.7/lib **vmware [#h009d77b] -debian -- apt-get install build-essential -- apt-get install ssh -- apt-get install emacs -- apt-get install nfs-kernel-server - /etc/resolv.conf - /etc/hosts - /etc/network/interfaces /etc/network/interfaces: iface eth0 inet static address 192.168.xx.10 network 192,168.xx.0 netmask 255.255.255.0 gateway 192.168.xx.1 broadcast 192.168.xx.255 #dns-nameserver 192.168.xx.1 #dns-search workgroup auto eth0 **nfs [#q0fca9d7] - /etc/exports in hostname_0 /etc/exports: /opt/temp hostname_1(rw) - /etc/fstab in hostname_1 /etc/fstab: hostname_0:/opt/temp /home/user/work/temp defaults 0 0 - mount -f hostname_0:/opt/temp - mount -a * プログラム [#o58bf3ef] ** プロセス間通信(1対1通信) [#mdf88e19] ** プロセス間通信(グループ通信) [#ua962871]