Skip to content

Commit

Permalink
Processor group awareness bodged in. Enabled by -ga flag, and added t…
Browse files Browse the repository at this point in the history
…o the existing processmapping pipeline. Implemented at the top of StartSenderReceiver, defaults to old behavior. Maintains compatibility with old -m[apping] string so we don't break old scripts.
  • Loading branch information
Peter Neal committed Dec 1, 2022
1 parent b4fbf84 commit 904c825
Show file tree
Hide file tree
Showing 3 changed files with 1,344 additions and 1,094 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ bld/
[Oo]bj/
[Ll]og/
[Ll]ogs/
[Oo]ut

# Visual Studio 2015/2017 cache/options directory
.vs/
Expand Down
27 changes: 27 additions & 0 deletions src/CMakeSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": ""
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "Release",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": []
}
]
}
Loading

0 comments on commit 904c825

Please sign in to comment.