-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e13a3b
commit f0aee60
Showing
8 changed files
with
51 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
@call run-sgc.bat %* | ||
@echo off | ||
pushd "%~dp0" | ||
|
||
rem JIT settings | ||
set COMPlus_TieredCompilation=1 | ||
rem set COMPlus_ReadyToRun=0 | ||
|
||
rem GC settings | ||
set COMPlus_gcServer=1 | ||
rem set COMPlus_gcConcurrent=1 | ||
set COMPlus_gcAllowVeryLargeObjects=1 | ||
set COMPlus_GCRetainVM=1 | ||
set COMPlus_GCLargePages=1 | ||
rem set COMPlus_GCLatencyLevel=0 | ||
rem set COMPlus_GCLatencyMode=1 | ||
rem set COMPlus_GCCpuGroup=1 | ||
rem set COMPlus_Thread_UseAllCpuGroups=1 | ||
|
||
goto :skipLogging | ||
set COMPlus_GCLogEnabled=1 | ||
set COMPlus_GCLogFile=C:\Temp\GC.log | ||
set COMPlus_GCLogFileSize=1f0 | ||
set COMPlus_GCConfigLogEnabled=1 | ||
set COMPlus_GCConfigLogFile=C:\Temp\GCConfig.log | ||
set COMPlus_GCMixLog=C:\Temp\GCMix.log | ||
:skipLogging | ||
|
||
dotnet run -p App\GCBurn.App.csproj -c Release -- %* | ||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,21 @@ | ||
#! /bin/bash | ||
pushd "${0%/*}" >/dev/null | ||
./run-sgc $@ | ||
|
||
# JIT settings | ||
export COMPlus_TieredCompilation=1 | ||
# export COMPlus_ReadyToRun=0 | ||
|
||
# GC settings | ||
export COMPlus_gcServer=1 | ||
# export COMPlus_gcConcurrent=1 | ||
export COMPlus_gcAllowVeryLargeObjects=1 | ||
export COMPlus_GCRetainVM=1 | ||
export COMPlus_GCLargePages=1 | ||
# export COMPlus_GCLatencyLevel=0 | ||
# export COMPlus_GCLatencyMode=1 | ||
# export COMPlus_GCCpuGroup=1 | ||
# export COMPlus_Thread_UseAllCpuGroups=1 | ||
|
||
dotnet run -p App/GCBurn.App.csproj -c Release -- $@ | ||
|
||
popd >/dev/null |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters