Steven Timm wrote:
I have a pool of machines that contains both INTEL/LINUX and X86_64/LINUX machines. All current jobs seem to have the requirements, by default:Requirements = (Arch == "INTEL") && (OpSys == "LINUX") && (Disk >= DiskUsage) && ((Memory * 1024) >= ImageSize) && (TARGET.FileSystemDomain == MY.FileSystemDomain)Where's the default setting that puts that in, and how do we change it to be (ARCH == "INTEL") || (ARCH == "X86_64")
Condor specifies Arch to be the same as the submit machine UNLESS the user specifies it in their Requirements string in their JDL.
I think if you specify APPEND_REQUIREMENTS = (ARCH == "INTEL") || (ARCH == "X86_64")on the config of the submitter it will do what you want (although I haven't tested).
- B