启动mpi进程时,Slime \ Emacs comint挂起

时间:2018-05-08 16:14:05

标签: emacs mpi common-lisp sbcl slime

我有一个简单的mpi程序来演示我的问题:

#include <stdio.h>
#include <mpi.h>

int main(int argc, char *argv[])
{
    int rank, csize;

    MPI_Init(&argc, &argv);
    MPI_Comm_rank(MPI_COMM_WORLD, &rank);
    MPI_Comm_size(MPI_COMM_WORLD, &csize);

    printf("Hello from rank[%d/%d]\n", rank, csize);

    MPI_Finalize();
}

编译完成后,我可以使用sbcl repl中的mpirun成功启动可执行文件:

* (uiop:run-program '("mpirun" "-np" "10" "./hello_world") :output :string)

"Hello from rank[7/10]
Hello from rank[9/10]
Hello from rank[5/10]
Hello from rank[8/10]
Hello from rank[0/10]
Hello from rank[1/10]
Hello from rank[2/10]
Hello from rank[3/10]
Hello from rank[4/10]
Hello from rank[6/10]
"
NIL
0

但是,当我从粘液中运行时,粘液重复只是挂起。如果我直接运行可执行文件,而不是通过mpirun启动程序,那么一切运行正常:

CL-USER> (uiop:run-program '("./hello_world")
               :output :string)
"Hello from rank[0/1]
"
NIL
0

我在linux工作站上使用sbcl-1.4.5和slime 2.20。有没有人有这个问题的解决方案或者在哪里寻找?

更新:

问题源于emacs comint模式,slime基于此模式。如果我通过sbcl启动make-comint-in-buffer然后使用uiop:run-program,我会观察到同样的悬挂行为。

UPDATE2:

comint模式上读了一下后,我能够从挂起过程中捕获一些输出。这封emacs lisp代码:

(make-comint "foo" "mpirun" nil "-np" "1" "/home/ptb/programming/c/hello_world")

在挂起进程上产生跟随错误:

[warn] Epoll MOD(1) on fd 14 failed.  Old events were 6; read change was 0 (none); write change was 2 (del): Bad file descriptor
[warn] Epoll MOD(4) on fd 14 failed.  Old events were 6; read change was 2 (del); write change was 0 (none): Bad file descriptor

关于这意味着什么的想法?

1 个答案:

答案 0 :(得分:2)

我想这是在openmpi或libevent中重定向stdin / stdout的问题(过去曾出现过这样的问题,例如bugzilla.redhat.com/show_bug.cgi?id=1235044)。您使用的是哪个版本?