Skip to content

Commit

Permalink
Merge pull request #91 from harold-b/fix/no-numa
Browse files Browse the repository at this point in the history
Fix bug where --no-numa would incorrectly disable cpu affinity instead (thanks to @malventano for figuring this out).

Bumped version to 1.1.1
  • Loading branch information
harold-b authored Sep 15, 2021
2 parents b48f262 + 9638a06 commit e552343
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit e552343

Please sign in to comment.