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

Re: [Condor-users] How to distinguish between 32-bit and 64-bit architecture



On Thu, Nov 11, 2010 at 10:19 AM, Willem Hough <houghwj@xxxxxxxxx> wrote:
Hi Dave,

Thanks for the reply. Should this also be the case when running a Windows pool?
I'm running version 7.4.3. Maybe upgrading to 7.4.4 could be beneficial.

Condor on Windows doesn't tell you anything for Arch other than "INTEL".

You'll need to define your own custom attribute and match against that. On machines you know are 32-bit OS installs you do:

   MyOpSys = 32
   STARTD_ATTRS = $(STARTD_ATTRS), MyOpSys

And on the 64-bit OS machines:

   MyOpSys = 64
   STARTD_ATTRS = $(STARTD_ATTRS), MyOpSys

And then your jobs can do:

   requirements = MyOpSys =?= 64

To find 64-bit Windows.

- Ian