?? mpirun.alpha
字號:
#!/bin/ksh# $Id: mpirun.alpha,v 1.1.6.1 2002/04/24 03:25:22 erik Exp $# This script provides an interface such that the simple command# mpirun -np # runs # copies of the program in parallel.# The qsub on compaq demands thisif [ "$1" != "-np" ] then echo "Usage: mpirun -np #" exit 1finum_procs=$2shift 2prog=$*exec prun -n $num_procs $prog
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -