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

build.sh file does not exist

267544
Beginner
1,030 Views

After connecting to devcloud and changing location to sample downloaded from git, creating build.sh and run.sh 

submitting with qsub command it shows build.sh not exist

0 Kudos
1 Solution
JaideepK_Intel
Moderator
1,003 Views

Hi,

 

Thank you for posting in Intel communities.

 

We assume that you are giving the wrong path to that directory where build.sh and run.sh are present.

 

Go the directory where build.sh is present and run the below command.

pwd

example_ouput: /home/u123456/download/build.sh

 

Copy the output of pwd and run the below command in login node.

qsub -l nodes=1:gpu:ppn=2 -d . /home/u123456/download/build.sh

 

To check the status of the above job, run the below command.

qstat

 

If job runs successfully, you are going to get 2 files example: build.sh.o2080472 (an output file) and build.sh.e2080472(an error file). attaching screenshot for your reference.

JaideepK_Intel_0-1670578140054.png

 

If the issue still persists, please provide exact steps to reproduce your issue.

 

If this resolves your issue, make sure to accept this as a solution. This would help others with similar issue. Thank you!

 

Regards,

Jaideep

 

 

View solution in original post

0 Kudos
4 Replies
JaideepK_Intel
Moderator
1,004 Views

Hi,

 

Thank you for posting in Intel communities.

 

We assume that you are giving the wrong path to that directory where build.sh and run.sh are present.

 

Go the directory where build.sh is present and run the below command.

pwd

example_ouput: /home/u123456/download/build.sh

 

Copy the output of pwd and run the below command in login node.

qsub -l nodes=1:gpu:ppn=2 -d . /home/u123456/download/build.sh

 

To check the status of the above job, run the below command.

qstat

 

If job runs successfully, you are going to get 2 files example: build.sh.o2080472 (an output file) and build.sh.e2080472(an error file). attaching screenshot for your reference.

JaideepK_Intel_0-1670578140054.png

 

If the issue still persists, please provide exact steps to reproduce your issue.

 

If this resolves your issue, make sure to accept this as a solution. This would help others with similar issue. Thank you!

 

Regards,

Jaideep

 

 

0 Kudos
267544
Beginner
993 Views

Thanks 

I have confusion that after -d . argument in qsub command it is address on local machine or devcloud platform and how to submit script from local machine

0 Kudos
JaideepK_Intel
Moderator
967 Views

Hi,

 

Thanks for accepting our solution.

 

After -d . <Path to the job.sh script inside devcloud>.

 

If files are present on your local machine, transfer them to the DevCloud using the scp command.

example:

scp -r <Path inside the local machine > devcloud:<Path inside the devcloud>

If you need any additional information, please post a new question as this thread will no longer be monitored by Intel. Have a great day ahead.

 

Thanks,

Jaideep

 

0 Kudos
Reply