blob: b8a161427422c3503157344ac609d7521947ec30 [file]
/*****************************************************************************\
* src/plugins/task/affinity/affinity.c - task affinity plugin
*****************************************************************************
* Copyright (C) 2005-2006 Hewlett-Packard Development Company, L.P.
*
* This file is part of Slurm, a resource management program.
* For details, see <https://slurm.schedmd.com/>.
* Please also read the included file: DISCLAIMER.
*
* Slurm is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* In addition, as a special exception, the copyright holders give permission
* to link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two. You must obey the GNU
* General Public License in all respects for all of the code used other than
* OpenSSL. If you modify file(s) with this exception, you may extend this
* exception to your version of the file(s), but you are not obligated to do
* so. If you do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source files in
* the program, then also delete it here.
*
* Slurm is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with Slurm; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#define _GNU_SOURCE
#include "affinity.h"
/* If HAVE_NUMA, create mask for given ldom.
* Otherwise create mask for given socket
*/
static int _bind_ldom(uint32_t ldom, xcpuset_t *mask)
{
#ifdef HAVE_NUMA
int c, maxcpus, nnid = 0;
int nmax = numa_max_node();
if (nmax > 0)
nnid = ldom % (nmax+1);
debug3("binding to NUMA node %d", nnid);
maxcpus = conf->sockets * conf->cores * conf->threads;
for (c = 0; c < maxcpus; c++) {
if (slurm_get_numa_node(c) == nnid)
XCPU_SET(c, mask);
}
return true;
#else
uint16_t s, sid = ldom % conf->sockets;
uint16_t i, cpus = conf->cores * conf->threads;
warning("%s: Attempting to bind to NUMA locality domains while Slurm was build without NUMA support",
__func__);
if (!conf->block_map)
return false;
for (s = sid * cpus; s < (sid+1) * cpus; s++) {
i = s % conf->block_map_size;
XCPU_SET(conf->block_map[i], mask);
}
return true;
#endif
}
extern xcpuset_t *get_cpuset(stepd_step_rec_t *step, uint32_t node_tid)
{
xcpuset_t *mask = NULL;
int nummasks, maskid, i;
char *curstr, *selstr;
char *mstr = NULL, *comma = NULL;
uint32_t local_id = node_tid;
char buftype[1024];
slurm_sprint_cpu_bind_type(buftype, step->cpu_bind_type);
debug3("get_cpuset (%s[%d]) %s", buftype, step->cpu_bind_type,
step->cpu_bind);
if (step->cpu_bind_type & CPU_BIND_NONE) {
return NULL;
}
if (step->cpu_bind_type & CPU_BIND_LDRANK) {
/* if HAVE_NUMA then bind this task ID to it's corresponding
* locality domain ID. Otherwise, bind this task ID to it's
* corresponding socket ID */
mask = xcpuset_alloc();
if (!_bind_ldom(local_id, mask))
xfree(mask);
return mask;
}
if (!step->cpu_bind)
return NULL;
nummasks = 1;
selstr = NULL;
/* get number of strings present in cpu_bind */
curstr = step->cpu_bind;
while (*curstr) {
if (nummasks == local_id+1) {
selstr = curstr;
break;
}
if (*curstr == ',')
nummasks++;
curstr++;
}
/* if we didn't already find the mask... */
if (!selstr) {
/* ...select mask string by wrapping task ID into list */
maskid = local_id % nummasks;
i = maskid;
curstr = step->cpu_bind;
while (*curstr && i) {
if (*curstr == ',')
i--;
curstr++;
}
if (!*curstr) {
return NULL;
}
selstr = curstr;
}
/* extract the selected mask from the list */
mstr = xstrdup(selstr);
if ((comma = xstrchr(mstr, ',')))
*comma = 0;
if (step->cpu_bind_type & CPU_BIND_MASK) {
/* convert mask string into cpu_set_t mask */
if (!(mask = task_str_to_cpuset(mstr)))
error("task_str_to_cpuset %s", mstr);
xfree(mstr);
return mask;
}
mask = xcpuset_alloc();
if (step->cpu_bind_type & CPU_BIND_MAP) {
unsigned int mycpu = 0;
if (xstrncmp(mstr, "0x", 2) == 0) {
mycpu = strtoul (&(mstr[2]), NULL, 16);
} else {
mycpu = strtoul (mstr, NULL, 10);
}
XCPU_SET(mycpu, mask);
xfree(mstr);
return mask;
}
if (step->cpu_bind_type & CPU_BIND_LDMASK) {
/* if HAVE_NUMA bind this task to the locality domains
* identified in mstr. Otherwise bind this task to the
* sockets identified in mstr */
int len = strlen(mstr);
char *ptr = mstr + len - 1;
uint32_t base = 0;
curstr = mstr;
/* skip 0x, it's all hex anyway */
if (len > 1 && !memcmp(mstr, "0x", 2L))
curstr += 2;
while (ptr >= curstr) {
char val = slurm_char_to_hex(*ptr);
if ((val == (char) -1) ||
((val & 1) && !_bind_ldom(base, mask)) ||
((val & 2) && !_bind_ldom(base + 1, mask)) ||
((val & 4) && !_bind_ldom(base + 2, mask)) ||
((val & 8) && !_bind_ldom(base + 3, mask))) {
xfree(mask);
break;
}
ptr--;
base += 4;
}
xfree(mstr);
return mask;
}
if (step->cpu_bind_type & CPU_BIND_LDMAP) {
/* if HAVE_NUMA bind this task to the given locality
* domain. Otherwise bind this task to the given
* socket */
uint32_t myldom = 0;
if (xstrncmp(mstr, "0x", 2) == 0) {
myldom = strtoul (&(mstr[2]), NULL, 16);
} else {
myldom = strtoul (mstr, NULL, 10);
}
if (!_bind_ldom(myldom, mask))
xfree(mask);
xfree(mstr);
return mask;
}
xfree(mstr);
return mask;
}