l******l 发帖数: 233 | 1 是在bash shell上运行。
参照网上的一些说法在mpirun前加了nohup,但当我关掉窗口的时候程序还是会断掉并
在nohup.out文件里输出以下信息
mpiexec_*.umd.edu: mpd_uncaught_except_tb handling:
exceptions.IOError: [Errno 9] Bad file descriptor
/usr/local/bin/mpirun 1065 handle_stdin_input
sys.stdin.flush() # probably does nothing
/usr/local/bin/mpdlib.py 762 handle_active_streams
handler(stream,*args)
/usr/local/bin/mpirun 515 mpiexec
rv = streamHandler.handle_active_streams(timeout=1.0)
/usr/local/bin/mpir |
h*******e 发帖数: 155 | 2 用screen试试
【在 l******l 的大作中提到】 : 是在bash shell上运行。 : 参照网上的一些说法在mpirun前加了nohup,但当我关掉窗口的时候程序还是会断掉并 : 在nohup.out文件里输出以下信息 : mpiexec_*.umd.edu: mpd_uncaught_except_tb handling: : exceptions.IOError: [Errno 9] Bad file descriptor : /usr/local/bin/mpirun 1065 handle_stdin_input : sys.stdin.flush() # probably does nothing : /usr/local/bin/mpdlib.py 762 handle_active_streams : handler(stream,*args) : /usr/local/bin/mpirun 515 mpiexec
|
e****r 发帖数: 581 | 3 re
【在 h*******e 的大作中提到】 : 用screen试试
|
d***b 发帖数: 376 | 4 nohup mpirun -np x myprogram &> OUT&
assume x is number of processor, myprogram is the program name & path you
are running, OUT contains standard out and error output.
or you can use screen. |