Shetty
Shetty

Reputation: 1

Dotnet exe fails on system with 4 processors

I have a WPF exe which crashes on a system with 4 Intel procs (56 core each). The same exe works fine if we disable multi threading or reduce the core count to 24 on each proc.

The dotnet framework used is 4.8. And the exe is run in WinPE environment.

Have tried the below config based on this old thread (Does .NET Core have a 64 vCPU limit?). Though the core count changed from 64 to 448 (HyperThreading enabled), the app still crashes.

`<configuration>
   <runtime>
      <Thread_UseAllCpuGroups enabled="true"/>
      <GCCpuGroup enabled="true"/>
      <gcServer enabled="true"/>
   </runtime>
</configuration>`

Is there any other setting or config that is needed to make the exe work with more than 96 cores?

Upvotes: 0

Views: 45

Answers (0)

Related Questions