Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 2.05 KB

README.md

File metadata and controls

57 lines (45 loc) · 2.05 KB

Tips

  • In open source configure/make, instead of $INCLUDE or $C_INCLUDE_PATH, use $CPATH
  • Ex: export CPATH+=:/usr/local/mpich/3.3.1_intel18/include

multi_block.xmf

... An example of distributed parallel visualization. ... Among 200x3 position data, 100x3 and 100x3 are splitted and each of two processors in paraviewl will be responsible for each block.

installation note

libunwind: ./configure --prefix /home/hpjeon/hw/libunwind

mpiP: ./configure --prefix=/home/hpjeon/hw/mpiP --with-cc=mpicc --with-f77=mpifort CFLAGS=-I/home/hpjeon/hw/libunwind/include LDFLAGS=-L/home/hpjeon/hw/libunwind/ lib --enable-collective-report-default

References

download all git repositories of a user

  • As of July 2024:
for i in `curl -s https://api.github.com/users/hpjeonGIT/repos?per_page=1000 |grep git_url |awk '{print $2}'| sed 's/"\(.*\)",/\1/' | sed 's/git:/https:/'`; do  git clone $i;  done

Using https for git

git on windows

  • git from cmd window or github desktop may yield timed out, failing to download all of submodules
  • find a location like c:\TMP or shorter folder name, not c:\users....

pdsh command

  • shell command for multiple nodes
  • When there are cluster1, cluster2, ... cluster99 nodes,
  • pdsh -w cluster[1-99] uptime

ssh key renew

  • Delete or backup old .ssh folder
  • ssh-keygen;cd .ssh; echo “StrictHostKeyChecking no” > config; cat id_rsa.pub > authorized_keys; chmod 600 authorized_keys
  • Run pdsh all nodes to update ssh key

trace routing

  • Windows: tracert cnn.com
  • Linux: traceroute cnn.com
  • Shows time taken by gateway, b/w server and hosts