mpirun.alpha
来自「CCSM Research Tools: Community Atmospher」· ALPHA 代码 · 共 22 行
ALPHA
22 行
#!/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 + =
减小字号Ctrl + -
显示快捷键?