Changes between Version 73 and Version 74 of cypress/using


Ignore:
Timestamp:
12/21/22 13:46:17 (17 months ago)
Author:
cbaribault
Comment:

Reworded to include interactive partition.

Legend:

Unmodified
Added
Removed
Modified
  • cypress/using

    v73 v74  
     1
     2{{{
     3
     4}}}
    15[[PageOutline]]
    26
     
    222226==== Selecting Centos/glibc Version Via SLURM --partition ====
    223227
    224 Using the SLURM partitions '''dev''' and '''centos7''', Cypress groups all compute nodes into two distinct sets, where all nodes in the given set run the same version of the Linux Centos operating system (OS). In turn, the OS version determines the version of the GNU C library, nicknamed '''glibc'''. (See [https://www.gnu.org/software/libc/ The GNU C Library] for more information.) The version of Centos and glibc can be displayed as in the following.
    225 
    226 Compute nodes in partition defq (as well as login nodes) have Centos version 6.5 with glibc version 2.12.
    227 
    228 {{{
     228Cypress has SLURM partitions which define sets of compute nodes, where all nodes in the given set or partition share certain properties. In particular, all compute nodes in the partition '''centos7''' run the same, more recent version of the Linux Centos operating system (OS). In turn, the OS version determines the version of the GNU C library, nicknamed '''glibc'''. (See [https://www.gnu.org/software/libc/ The GNU C Library] for more information.) The version of Centos and glibc can be displayed as in the following.
     229
     230Compute nodes in partitions '''defq''' and '''interactive''' (as well as login nodes) have Centos version 6.5 with glibc version 2.12.
     231
     232{{{
     233[tulaneID@cypress1 ~]$ cat /etc/centos-release && ldd --version
     234CentOS release 6.5 (Final)
     235ldd (GNU libc) 2.12
     236Copyright (C) 2010 Free Software Foundation, Inc.
     237This is free software; see the source for copying conditions.  There is NO
     238warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     239Written by Roland McGrath and Ulrich Drepper.
    229240[tulaneID@cypress1 ~]$ sbatch --partition=defq --wrap='cat /etc/centos-release && ldd --version'
    230241Submitted batch job 2226229
     
    238249}}}
    239250
    240 Compute nodes in partition centos7 have Centos version 7.4 with glibc version 2.17.
     251Compute nodes in partition '''centos7''' have Centos version 7.4 with glibc version 2.17.
    241252
    242253{{{
     
    254265===== Requesting partition centos7 with glibc 2.17 =====
    255266
    256 If your batch job requires the later version of glibc, then include the following in your batch script.
     267If your batch job requires the later version of glibc, then include the following directive in your batch script.
    257268
    258269{{{