Intel® DevCloud
Help for those needing help starting or connecting to the Intel® DevCloud
1659 Discussions

Cannot get error and output results after running oneapi sample

Olessia
Employee
1,093 Views

Hi! 

I am trying to ran oneapi sample using following command: 

qsub -q batch@v-qsvr-nda -l nodes=s014-n001:ppn=2 script.sh

script.sh:

#!/bin/bash
dpcpp -O3 -mkl gemm.cpp && ./a.out

The result I get is 

u53888@login-2:~$ qsub -q batch@v-qsvr-nda -l nodes=s014-n001:ppn=2 script.sh
16765.v-qsvr-nda.aidevcloud

But I do not get script.sh.o16765 and script.sh.e16785 files. I refreshed file list but this did not help. How can it be fixed? 

 

Thanks

Labels (1)
0 Kudos
3 Replies
ArunJ_Intel
Moderator
1,075 Views

Hi Olessia,

 

You are not able to see the output and error files because your job has not completed execution. In the command you are requesting specifically for the node "s014-n001", this node is not free at the time you request so your job is being put in queue for the node "s014-n001" to be free. To request any node which is free in the queue please use the below command

 

qsub -q batch@v-qsvr-nda -l nodes=1:ppn=2 script.sh

 

 

Thanks

Arun

 

0 Kudos
ArunJ_Intel
Moderator
1,058 Views

Hey Olessia,


Have you tried out the solution provided? Please let us know if you need any further information.


Thanks

Arun


0 Kudos
ArunJ_Intel
Moderator
1,044 Views

Hey Olessia,


We hope the solution works for you. We wouldn't be monitoring this case further. Please feel free to raise a new thread in case of any other issues.


Thanks

Arun Jose


0 Kudos
Reply