- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do you know why after using devcloud for a moment everyday then you cannot compile/run anything anymore and not just my code but all the codes of the training modules for oneAPI base toolkit have this kind of output as well when you compile/run: "
TimeOut 60 seconds: Job is still queued for execution, check for output file later (run_buffer_destruction.sh.o1015610)
".
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello amadou,
Thank you for posting on the Intel® communities.
To better assist you, we have moved your question to another forum.
Regards,
Adrian M.
Intel Customer Support Technician
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
We are able to run the Basetool kit samples. Please follow the below steps for vector-add sample.
Connect to the Devcloud:
ssh devcloud
Currently you are in login node then connect to compute node :
qsub -I
Download the samples.
git clone https://github.com/oneapi-src/oneAPI-samples.git
Go to the vector-add sample
cd oneAPI-samples/DirectProgramming/DPC++/DenseLinearAlgebra/vector-add/
Build and run the sample in batch mode
Create the job scripts
vi build.sh
Paste the following contents in build.sh script
#!/bin/bash
source /opt/intel/inteloneapi/setvars.sh
make clean
make all
Create a run.sh script
vi run.sh
Paste the following contents in run.sh script
#!/bin/bash
source /opt/intel/inteloneapi/setvars.sh
make run
Build the sample on a gpu node.
qsub -l nodes=1:gpu:ppn=2 -d . build.sh
To inspect the job progress
watch -n 1 qstat -n -1
Run the sample on a gpu node after the build job completes successfully.
qsub -l nodes=1:gpu:ppn=2 -d . run.sh
After running the above command the out put is going to save in file (eg: run.sh.o1018851)
Note:
How to change job timeout (max = 24h)
By default, any jobs will be terminated automatically at the 6h mark. Use the following syntax if your job requires more than 6h to complete.
qsub -I -l walltime=hh:mm:ss
eg: qsub -I -l walltime=10:00:00
Please share your Devcloud id if you are facing same issue after running the above steps.
Thanks,
Jaideep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
If this resolves your issue, make sure to accept this as a solution. This would help others with similar issue. Thank you!
Thanks,
Jaideep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I assume that your issue is resolved. If you need any additional information, please post a new question as this thread will no longer be monitored by Intel.
Thanks,
Jaideep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I also have this problem when using jupyter notebook.
I try following the solution described above but I got stuck at ssh. I waited and there is no response.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
oop! user error. I can ssh now. Please ignore my previous comment.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page