- (a)
- You should refer to a manual made by ISSP for the common computational procedure. Up to here, we
provided explanations about the program of CPVO with method for calculating on front-end processor
of the system using standard UNIX in mind.
一般的な計算手順は、同研究所が作っている計算機のマニュアルを参考にする。CPVOのプログラムは、通常のUNIXを用いた
システムで、フロントエンドプロセッサー上(ログインした計算機)で計算する方法をこれまで念頭において説明を行ってきた。
- (b)
- Along with a lot of large computer centers, calculation is performed with the method which computation
job is submitted from front-end processor to back-end processor by queueing system. Generation of
executable format, in other words, compilation, is able to be executed by both front-end processor and
back-end processor, but the name of commands of compilation are different.
多くの大型計算機センターと同様に、キューイングシステムにより計算ジョブをフロントエンドプロセッサーからバックエンド
プロセッサーに投入する方法で計算を行う。実行形式の生成(コンパイル)については、フロントエンドプロセッサーまたは、
バックエンドプロセッサーの両方で実行可能であるが、コンパイルコマンドの名前が異なっている。
- (c)
- If you put source code in the work space, compile it and execute a executable file, normal calculation
is not performed. If you put source code below the home directory, compile it and execute a executable
file, normal calculation is performed. Additionally, when you compile source code, you have to make
section2 of
Makefile
to initiate Makein.sr8
.
また、作業領域上にソースコードを置き、コンパイルして、そこで実行をすると、正常に計算が行われない。これまで、ホーム
ディレクトリーの下にソースコードを置き、コンパイルして、そこで実行をすると正常に計算が行われる。また、コンパイルは、
Makefile
中のsection2の部分で、Makein.sr8
が起動するようにしておく。
- (d)
- You have to prepare the files required to use queueing system (
qrun.sh
). In cpvo.sh
,
you have to set drvname=sr8
and frt=ft
. To submit job, you should enter such a command
shown below on icho.
%> qsub -q q08s -N 8 -lE 36000 qrun.sh
キューイングシステムを使う上で必要なファイルqrun.sh
を用意する。cpvo.sh
中では、drvname=sr8
,
frt=ft
とする。icho上で
%> qsub -q q08s -N 8 -lE 36000 qrun.sh
などとするとジョブを投入する
ことができる。