[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] Unable to run with mutiple files.



On Wed, May 25, 2005 at 12:18:52PM -0500, Srirangam Addepalli wrote:
> Hello,
>  I have a executable which requires three more files to be in the same 
> directory where it is located to run a job. I was trying the following 
> script which i thought should work. How ever the executable is not able to 
> find the other three files. Do i need to be exporting any other variable to 
> run this job.

No, you're misusing 'input'.

input is the file that will be used for stdin of the job.

You really want something like:

transfer_input_files =  1.inp, GENBAS, messages, comdyn.f

(and it's transfer_input_files, not transfe_input_file)

Those files will be dropped in the working directory of the job.
It's up to your program to find them, either because it knows to
look in the current directory, or you specify it on the command
line (in which case you'll need to have an 'arguments = <something>'
line in your submit file.

-Erik


>  Thanks
>  Rangam
>  *My submit description file*
>   universe = vanilla
> environment = path=c:\winnt\system32
> executable = executable.exe
> ShouldTransferFiles = ALWAYS
> Transfer_input_file=messages
> WhenToTransferOutput = ON_EXIT
> input = 1.inp
> input= GENBAS
> input = messages
> input = comdyn.f
> output= 1.out
> error = 1.err
> log = 1.log
> queue

> _______________________________________________
> Condor-users mailing list
> Condor-users@xxxxxxxxxxx
> https://lists.cs.wisc.edu/mailman/listinfo/condor-users