From 441e9a9cc5198f5a04bdc214813e03f5dbc78941 Mon Sep 17 00:00:00 2001 From: Nathan Baltzell Date: Mon, 8 Jun 2026 19:43:06 -0400 Subject: [PATCH] remove numa function --- mcdj | 9 --------- 1 file changed, 9 deletions(-) diff --git a/mcdj b/mcdj index adfc207..8669e9a 100755 --- a/mcdj +++ b/mcdj @@ -95,15 +95,6 @@ def run(cfg, cwd, cmd): p.wait() return p.returncode -def get_numa_cpus(node): - import subprocess - cmd = ['numactl','-H'] - logging.getLogger(__name__).info(' '.join(cmd)) - p = subprocess.Popen(cmd,stdout=subprocess.PIPE,stderr=subprocess.STDOUT,universal_newlines=True,encoding='latin-1') - for line in iter(p.stdout.readline, ''): - if line.startswith(f'node {node} cpus:'): - return line.strip().split()[3:] - # a list of all the output files we've made: _outputs = []