Hi Everyone,
I have a condor pool of 6 windows nodes (CPU's) to run jobs, I want to generate 1200 simulations from a R program and the way i'm doing is creating separate files for every 200 simulations(1-200 in one, 201-400 in other and so on...) so overall 6 files with same name are generated and they share 7 common files so i placed these 6 files in 6 directories(job.0 ,job.1.....job.5) in the same folder where the program, submit file is.
Here is my Submit File:
#test_sim.sub
#
universe = vanilla
Executable = RBatch.bat
getenv = true
initialdir = job.$(Process)\
should_transfer_files = YES
when_to_transfer_output = ON_EXIT
transfer_input_files =one.R, two.R, three.R, four.R, five.R,six.R, seven.R
transfer_executable = true
Output = test_sim_out.out
Log = test_sim_log.log
error
= test_sim_err.error
queue 6
where RBatch.bat is
set PATH=C:\Program Files\R\R-2.11.1-x64\bin\Rscript.exe
when I Submit this file file to the condor I get an error "Can't open C:\xxxxx\desktop\new_sim\job.0\one.R " with flags 00 : No Such file or directory
Is my submit file right?
if not can anyone tell me where i went wrong?
Thanks,