Skip to content

Commit

Permalink
Bugfix/cpu topology (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnlipp authored Oct 10, 2023
1 parent 7be1c40 commit 6491742
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@
<#if vm.maximumCpus gt 1>
- [ "-smp", "1,maxcpus=${ vm.maximumCpus }\
<#if vm.sockets gt 0>,sockets=${ vm.sockets }</#if>\
<#if vm.diesPerSocket gt 0>,cores=${ vm.diesPerSocket }</#if>\
<#if vm.diesPerSocket gt 0>,dies=${ vm.diesPerSocket }</#if>\
<#if vm.coresPerDie gt 0>,cores=${ vm.coresPerDie }</#if>\
<#if vm.threadsPerCore gt 0>,cores=${ vm.threadsPerCore }</#if>" ]
<#if vm.threadsPerCore gt 0>,threads=${ vm.threadsPerCore }</#if>" ]
</#if>
<#if vm.accelerator != "none">
- [ "-accel", "${ vm.accelerator }" ]
Expand Down

0 comments on commit 6491742

Please sign in to comment.