Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
大家好,我现在想测试的程序需要从文件或者目录中读取数据(eg:sample.txt),我使用bsub命令提交作业的时候,如何把此文件或者目录也一起提交上去呢?
您好
一般的程序运行方式: ./a.out a.file 或者 mpirun -n 2 ./a.out a.file 对应在超算上的运行方式: bsub -I -q q_x86_expr -n 1 ./a.out a.file
./a.out a.file
mpirun -n 2 ./a.out a.file
bsub -I -q q_x86_expr -n 1 ./a.out a.file
超算运行程序方式 = bsub .... + 程序运行命令
bsub .... + 程序运行命令
好的,谢谢 !