2009-10-21から1日間の記事一覧

某所 XT4 での CrayPat 出力結果

球殻モデル 球面調和関数展開 + チェビシェフ多項式 OpenMP 4 x MPI 32 並列. MPI は緯度円並列. All to All でスペクトルデータを sync する, いわゆる「安直 MPI 並列」 解像度 T84L48 コンパイラオプションは -fastsse -O4 -Minline -Mvect=noassoc -Mlre…

zsh のプロンプトに git の branch 名を表示させていると...

zsh の RPROMPT を以下の様に設定している. # get the name of the branch we are on git_prompt_info() { ( [ -d .git ] && ref=$(git-symbolic-ref HEAD 2> /dev/null)) || return echo "git:${ref#refs/heads/}|" } ... RPROMPT=$'%{$fg_bold[red]%}$(git…