> Am 15.12.2015 um 05:45 schrieb Steven Du <[email protected]>: > > Thank you very much! > > Does it mean there is no any issue on SGE master to manage x64 and x32 > client? Is it right?
Yep, you can even mix different operating systems and throw in some AIX or FreeBSD clients. To ease the creation of uniform job scripts which run independent from the machine they are execute on, one can use the environment variable $ARC and organize the binaries and/or their containing directories accordingly: #!/bin/sh # Set some stuff FOO=BAZ # Execute the binary /opt/software/$ARC/foobar Having directories /opt/software/lx-amd64 and /opt/software/lx-x86 you will always get the correct binary. I even use this to distinguish between amd64 and em64t to get the correct binaries for each type of CPU although the jobscript stays the same. -- Reuti > I will try to setup experimental environment. > > Will update later once I prove. > > Thanks, > Edgy > > On Mon, Dec 14, 2015 at 11:28 PM, Joshua Baker-LePain <[email protected]> > wrote: > On Mon, 14 Dec 2015 at 4:53pm, Steven Du wrote > > I wonder if I am able to build hybrid SGE computing environment. > > It is about running one SGE master on Intel x64 host with RHEL, and SGE > execd on 64bit and 32bit RHEL. And then, I am able to submit my jobs to any > exec hosts I like. Such as, some jobs go to 32bit only, others go to 64 bit > only. > > Based on my understanding, it should work. > > I did a Google search, but I could not find any article about it. Do you > know? Or if anyone has the similar running environment. Please share you > thought! I very appreciate your help. > > Yep, this is not a problem. I run such an environment. Be sure that users > submit jobs with the proper "-l arch=" request so that they go to the right > architecture. > > -- > Joshua Baker-LePain > QB3 Shared Cluster Sysadmin > UCSF > > _______________________________________________ > users mailing list > [email protected] > https://gridengine.org/mailman/listinfo/users _______________________________________________ users mailing list [email protected] https://gridengine.org/mailman/listinfo/users
