Slide 12
Slide 12 text
When Is File Transfer Needed?
• If your workers do not share a disk with your client, and
they will require custom functions or datafiles
• Example:
j = createJob(sched);
createTask(j,@rand,1,{3,3});
createTask(j,@myfunction,1,{3,3});
submit(j);
– The rand function is no problem at all, it’s built in
– But myfunction.m does not exist on the remote computer
– We’ll want to transfer this file and get it added to the path
5/8/2017 www.cac.cornell.edu 12