From 973854b6aa5af7b873528904701ebb57f27f6c90 Mon Sep 17 00:00:00 2001 From: Harold B Date: Tue, 14 Sep 2021 21:17:33 -0500 Subject: [PATCH 1/2] Fix bug where --no-numa would incorrectly disable cpu affinity instead. Thanks to @malventano for finding out. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 99fb7c43..14c4985f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -151,7 +151,7 @@ int main( int argc, const char* argv[] ) // #TODO: Don't let this config to permanently remain on the stack MemPlotConfig plotCfg; plotCfg.threadCount = cfg.threads; - plotCfg.noCPUAffinity = cfg.disableNuma; + plotCfg.noNUMA = cfg.disableNuma; plotCfg.noCPUAffinity = cfg.disableCpuAffinity; plotCfg.warmStart = cfg.warmStart; From 9638a064ec5c458dce5c38f8f286f86c8da4f56c Mon Sep 17 00:00:00 2001 From: Harold B Date: Tue, 14 Sep 2021 21:18:58 -0500 Subject: [PATCH 2/2] v1.1.1 fixed cli param issue --- src/Version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Version.h b/src/Version.h index 8f11ba3c..4ac3e28e 100644 --- a/src/Version.h +++ b/src/Version.h @@ -2,7 +2,7 @@ #define BLADEBIT_VERSION_MAJ 1 #define BLADEBIT_VERSION_MIN 1 -#define BLADEBIT_VERSION_REV 0 +#define BLADEBIT_VERSION_REV 1 #define BLADEBIT_VERSION \ ((uint64)BLADEBIT_VERSION_MAJ) << 32 \