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 | | {{{ |
| 228 | Cypress 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 | |
| 230 | Compute 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 |
| 234 | CentOS release 6.5 (Final) |
| 235 | ldd (GNU libc) 2.12 |
| 236 | Copyright (C) 2010 Free Software Foundation, Inc. |
| 237 | This is free software; see the source for copying conditions. There is NO |
| 238 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 239 | Written by Roland McGrath and Ulrich Drepper. |