2016-07-28 22 views
6

COMPS 1.4'ü ve http://www.bsc.es/computer-sciences/grid-computing/comp-superscalar/downloads-and-documentation bazı test programlarını indirdim ve bunları test etmeye çalışıyorum. Java infazları iyi gitti; ancak, ben de şu anda basit bir şekilde Ben'i yürütmeye çalışıyorum C.C COMPSs uygulamasında başarısız olan tüm işler

. , Yürütme biter 3 kontrollerden sonra

[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. 

:

buidapp simple 

runcompss --lang=c master/simple 1 

uygulaması gayet oluşturur, ancak bu komutla çalıştırırken, aşağıdaki hatayı alıyorum: Benioku sadece iki komutları ihtiyaç olduğunu belirtmektedir sonuç yok. Kaybettiğim bir şey mi var?

+1

Eğer job1 için çıkış ve hata günlüğünü kontrol ettin mi? Hata ayıklama modunu etkinleştirmek için sadece -d bayrağıyla birlikte çalışma derlemesi –

cevap

6

C bağlama ile bir uygulama çalıştırırken, varsayılan project.xml değeri geçerli değildir çünkü her bir ana makinede çalışan ikili dosyalarının dağıtıldığı yeri içeren bir project.xml tanımlamanız gerekir.

<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> 
İlgili konular