Hi,
Below is the ocean script
simulator( 'spectre )
hostMode( 'distributed )
----
design ,analysis & simulator options
---
run(?jobName "job1" ?queue "invglobal" ?lsfResourceStr "rusage[mem=2048]" ?lsfNoOfProcessors "4" )
The run command written above is throwing error shown below.
ERROR (49) : Job Submission Error : Job submission failed; LSF Error 120 - Request aborted by esub
Try to submit a LSF job from the command line using the same setup. Resolve any
LSF issue found in this step before submitting the job to LSF through ADE DP
job1001
When run() command arguments are changed as shown below, LSF job is submitted successfully.
run(?jobName "job1" ?drmsCmd "bsub -n 1 -M 2 -q invglobal -P gpio")
Now, I understand that former run() command isn't given project name in it's arguments but latter run() command , which has successfully submitted job, is given project name. The question is how to provide project name in the former run() command?
is there a way to know what is the shell command former run() command is executing ? If we can know the equivalent shell command of former run() command then we will come to know what options of bsub command are missing.
Thanks,
Prasad