How to submit an application job?

From UGP-Wiki

Jump to: navigation, search

1. If the input file refers to other files in the directory implicitly, you will have to specify the directory.

2. If the directory is not specified, user home directory is used by default.

3. All output is written to the specified directory.



Sample 1:

  Application Name: matlab
  Argument: -nojvm 
  Directory: 
  Stdin <: test1/inf.m 
 Job submitted: 
  cd $HOME; /u/local/bin/matlab -nojvm < test1/inf.m 

Sample 2:

  Application Name: matlab
  Argument: -nojvm 
  Directory: test1
  Stdin <: inf.m 
Job submitted: 
  cd test1; /u/local/bin/matlab -nojvm < inf.m 


Sample 3:

  Application Name: matlab
  Argument: -nojvm 
  Directory: test1
  Stdin <: test2/inf.m 
Job submitted: 
  cd test1; /u/local/bin/matlab -nojvm < test2/inf.m 


Sample 4:

  Application Name: matlab
  Argument: -nojvm 
  Directory: test1/test2
  Stdin <: inf.m 
Job submitted: 
  cd test1/test2; /u/local/bin/matlab -nojvm < inf.m 


Sample 5:

  Application Name: matlab
  Argument: -nojvm 
  Directory:
  Stdin <: test1/test2/inf.m 
Job submitted: 
  cd $HOME; /u/local/bin/matlab -nojvm < test1/test2/inf.m