From 32dde5497f57e4f75fc6cec4a6c18352d4ce930d Mon Sep 17 00:00:00 2001 From: Mike Hanby <mhanby@uab.edu> Date: Mon, 14 Aug 2023 21:19:11 -0500 Subject: [PATCH] Fix Defs for Large Mem Nodes c0136..139 --- nhc.conf | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/nhc.conf b/nhc.conf index 26bf36c..fc68232 100644 --- a/nhc.conf +++ b/nhc.conf @@ -19,15 +19,17 @@ ### Hardware checks ### # Set these to your correct socket, core, and thread counts. - {c00[97-99],c0[100-114]} || check_hw_cpuinfo 2 28 48 - {c0[115-149]} || check_hw_cpuinfo 2 24 24 + {c00[97-99],c0[100-114]} || check_hw_cpuinfo 2 28 28 + {c0[115-135],c0[140-149]} || check_hw_cpuinfo 2 24 24 + {c0[136-139]} || check_hw_cpuinfo 4 48 48 {c0[150-201]} || check_hw_cpuinfo 2 48 48 {c0[202-255]} || check_hw_cpuinfo 2 128 128 # Set these to the amount of physical RAM you have (leave the fudge factor). {c00[97-99],c0[100-114]} || check_hw_physmem 256gb 256gb 5% - {c0[115-149]} || check_hw_physmem 192gb 192gb 5% - {c0[150-201]} || check_hw_physmem 768gb 768gb 5% + {c0[115-135]} || check_hw_physmem 192gb 192gb 5% + {c0[136-139]} || check_hw_physmem 1510gb 1510gb 5% + {c0[140-201]} || check_hw_physmem 768gb 768gb 5% {c0[202-255]} || check_hw_physmem 512gb 512gb 5% # Set these to the amount of swap you have (leave the fudge factor). -- GitLab