C COMPS 执行失败的所有作业

All jobs failing in C COMPSs execution

我已经从 http://www.bsc.es/computer-sciences/grid-computing/comp-superscalar/downloads-and-documentation 下载了 COMPSs 1.4 和一些测试程序,我正在尝试测试它们。 Java 处决很顺利;但是,我遇到了 C 问题。

我目前正在尝试执行 Simple。自述文件指出我只需要两个命令:

buidapp simple

runcompss --lang=c master/simple 1

应用程序构建正常,但在使用此命令执行时,出现以下错误:

[ERRMGR]  -  WARNING: Job 1 for running task 1 on worker localhost has failed; resubmitting task to the same worker.

[ERRMGR]  -  WARNING: Task 1 execution on worker localhost has failed; rescheduling task execution. (changing worker)

[ERRMGR]  -  WARNING: No task could be scheduled to any of the available resources.
                      This could end up blocking COMPSs. Will check it again in 20 seconds.
                      Possible causes: 
                          -Network problems: non-reachable nodes, sshd service not started, etc.
                          -There isn't any computing resource that fits the defined tasks constraints.
                      If this happens 2 more times, the runtime will shutdown.

3次检查后,执行结束,无结果。有什么我想念的吗?

当 运行 一个带有 C 绑定的应用程序时,默认的 project.xml 无效,因为您必须定义一个 project.xml,其中包括部署 worker 二进制文件的位置每个主机。

<Project>
      <Worker Name="localhost">
        <InstallDir>/opt/COMPSs/Runtime/scripts/system/</InstallDir>
        <WorkingDir>[/path/to/dir/used_as_working_dir]</WorkingDir>
        <AppDir>[/path/to/installation]</AppDir>
        <LimitOfTasks>4</LimitOfTasks>
      </Worker>
</Project>