Difference between revisions of "Condor/Submit script for Windows"

From WolfTech
Jump to navigation Jump to search
m (New page: <pre> # specify the path of your executable executable = sim_little Universe = vanilla error = err_final.$(Process) output = out_final.$(Process) log = log_final.$(Process) Requ...)
 
m
 
Line 33: Line 33:
 
queue
 
queue
 
</pre>
 
</pre>
 +
 +
  Article created by Ravi Venkatesan of the CESR Research group

Latest revision as of 12:13, 14 September 2007

# specify the path of your executable

executable = sim_little       

Universe = vanilla

error = err_final.$(Process)
output = out_final.$(Process)
log = log_final.$(Process)

Requirements = (OpSys == “WINNT51”)

# change this to your e-mail address
notify_user = rkvenkat@unity.ncsu.edu
notification = ALWAYS

# specify the path of your job file     

BENCH = single_job                              

# can specify any default options to use
DEFAULT = -z100000

TRANSFER_FILES = ALWAYS

# specify input files to transfer to the destination machine 
# job file, the benchmark executable & its input files and cygwin1.dll need to be transferred

TRANSFER_INPUT_FILES = mcf, inp.in, single_job, cygwin1.dll
          
arguments = $(DEFAULT) $(BENCH)
queue
  Article created by Ravi Venkatesan of the CESR Research group