- Use 64-bit configuration. At Visual Studio switch 'Tools/Options/F# tools/F# Interactive/64-bit F# Interactive' should be "true"
- Tune
Fsi.exe
andFsiAnyCPU.exe
configuration in “c:\Program Files (x86)\Microsoft SDKs\F#<version>\Framework<version>\” ** — specifies whether the common language runtime runs server garbage collection. ** — specifies whether the common language runtime runs garbage collection on a separate thread. ** — on 64-bit platforms, enables arrays that are greater than 2 gigabytes (GB) in total size.
Created
January 18, 2015 13:25
-
-
Save akimboyko/47690a2be5937995bbab to your computer and use it in GitHub Desktop.
F# Interactive configuration for Machine Learning tasks
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<runtime> | |
<gcConcurrent enabled="true" /> | |
<gcServer enabled="true" /> | |
<legacyUnhandledExceptionPolicy enabled="true" /> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<dependentAssembly> | |
<assemblyIdentity | |
name="FSharp.Core" | |
publicKeyToken="b03f5f7f11d50a3a" | |
culture="neutral"/> | |
<bindingRedirect | |
oldVersion="2.0.0.0-4.3.0.0" | |
newVersion="4.3.1.0"/> | |
</dependentAssembly> | |
</assemblyBinding> | |
</runtime> | |
</configuration> |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<runtime> | |
<gcConcurrent enabled="true" /> | |
<gcServer enabled="true" /> | |
<gcAllowVeryLargeObjects enabled="true" /> | |
<legacyUnhandledExceptionPolicy enabled="true" /> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<dependentAssembly> | |
<assemblyIdentity | |
name="FSharp.Core" | |
publicKeyToken="b03f5f7f11d50a3a" | |
culture="neutral"/> | |
<bindingRedirect | |
oldVersion="2.0.0.0-4.3.0.0" | |
newVersion="4.3.1.0"/> | |
</dependentAssembly> | |
</assemblyBinding> | |
</runtime> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment