我有以下 .sh 文件,可以使用 sbatch 在集群计算机上运行:
壳牌.sh
#!/bin/bash
#
#SBATCH -p smp # partition (queue)
#SBATCH -N 2 # number of nodes
#SBATCH -n 2 # number of cores
#SBATCH --mem 2000 # memory pool for all cores
#SBATCH -t 5-0:00 # time (D-HH:MM)
#SBATCH -o out.out # STDOUT
#SBATCH -e err.err # STDERR
module load R
srun -N1 -n1 R CMD BATCH ./MyFile.R &
srun -N1 -n1 R CMD BATCH ./MyFile2.R &
wait
我的问题是 MyFile.R 和 MyFile2.R 看起来几乎一样:
我的文件
source("Experiment.R")
Experiment(args1) # some arguments
我的文件2.R
source("Experiment.R")
Experiment(args2) # some arguments
事实上,我需要为大约 100 个文件执行此操作。由于它们都加载了一些 R 文件,然后使用不同的参数运行实验,我想知道是否可以在不为每次运行创建新文件的情况下执行此操作。我想并行运行所有进程,所以我认为我不能只创建一个 R 文件。
我的问题是:是否有某种方法可以直接从 shell 运行该进程,而无需为每次运行创建一个 R 文件?所以我可以做类似的事情
srun -N1 -n1 R cmd BATCH 'source("Experiment.R"); Experiment(args1)' &
srun -N1 -n1 R cmd BATCH 'source("Experiment.R"); Experiment(args2)' &
wait
而不是shell.sh的最后三行?