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
| #if COMPILED | |
| namespace MinIncremental | |
| #endif | |
| #nowarn "9" | |
| #nowarn "51" | |
| open System | |
| open System.Collections | |
| open System.Collections.Generic | |
| open System.Collections.Concurrent |
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
| namespace DiffSharp | |
| open DiffSharp.Backend | |
| open DiffSharp.Util | |
| [<CustomEquality; CustomComparison>] | |
| type Tensor = | |
| | Tensor of primalRaw:RawTensor | |
| | TensorF of primal:Tensor * derivative:Tensor * nestingTag:uint32 | |
| | TensorR of primal:Tensor * derivative:(Tensor ref) * parentOperation:TensorOp * fanout:(uint32 ref) * nestingTag:uint32 |
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
| 0: initializing aardvark .................................................... | |
| 0: System Information: | |
| 0: OSVersion: Microsoft Windows NT 10.0.18362.0 | |
| 0: SystemArchitecture: 64-bit | |
| 0: Environment.Version: 4.0.30319.42000 | |
| 0: Unpacking native dependencies .................................. 0.014 s | |
| 0: Loading plugins ................................................ 0.499 s | |
| 0: initializing PixImageDevil ............................................. | |
| 0: WARNING: failed: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: The type initializer for 'Aardvark.Base.PixImageDevil' threw an exception. ---> System.DllNotFoundException: Unable to load DLL 'DevIL': The specified module could not be found. (Exception from HRESULT: 0x8007007E) | |
| at DevILSharp.IL.internalInit() |
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
| 0: initializing aardvark .................................................... | |
| 0: System Information: | |
| 0: OSVersion: Microsoft Windows NT 10.0.18362.0 | |
| 0: SystemArchitecture: 64-bit | |
| 0: Environment.Version: 4.0.30319.42000 | |
| 0: Unpacking native dependencies .................................. 0.055 s | |
| 0: Loading plugins ................................................ 0.070 s | |
| 0: initializing PixImageDevil ............................................. | |
| 0: WARNING: failed: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: The type initializer for 'Aardvark.Base.PixImageDevil' threw an exception. ---> System.DllNotFoundException: Unable to load DLL 'DevIL': The specified module could not be found. (Exception from HRESULT: 0x8007007E) | |
| at DevILSharp.IL.internalInit() |
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
| .class public auto ansi serializable TaskPerf.ManyWriteFile | |
| extends [System.Runtime]System.Object | |
| { | |
| .custom instance void [BenchmarkDotNet]BenchmarkDotNet.Attributes.MemoryDiagnoserAttribute::.ctor() = ( 01 00 00 00 ) | |
| .custom instance void [FSharp.Core]Microsoft.FSharp.Core.CompilationMappingAttribute::.ctor(valuetype [FSharp.Core]Microsoft.FSharp.Core.SourceConstructFlags) = ( 01 00 03 00 00 00 00 00 ) | |
| .method public specialname rtspecialname | |
| instance void .ctor() cil managed | |
| { | |
| // Code size 9 (0x9) |
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
| -o:C:\GitHub\dsyme\visualfsharp\fcs\..\artifacts\obj\fcs\net461\FSharp.Compiler.Service.dll | |
| --debug:portable | |
| --noframework | |
| --define:TRACE | |
| --define:COMPILER_SERVICE_AS_DLL | |
| --define:COMPILER | |
| --define:ENABLE_MONO_SUPPORT | |
| --define:NO_STRONG_NAMES | |
| --define:RELEASE | |
| --define:NETFRAMEWORK |
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
| module ResizeArray = | |
| /// Split a ResizeArray into an array of smaller chunks. | |
| /// This requires `items/chunkSize` Array copies of length `chunkSize` if `items/chunkSize % 0 = 0`, | |
| /// otherwise `items/chunkSize + 1` Array copies. | |
| let chunkBySize f chunkSize (items: ResizeArray<'t>) = | |
| // we could use Seq.chunkBySize here, but that would involve many enumerator.MoveNext() calls that we can sidestep with a bit of math | |
| let itemCount = items.Count | |
| if itemCount = 0 | |
| then [||] |
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
| 'devenv.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. | |
| 'devenv.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\PrivateAssemblies\Microsoft.VisualStudio.Platform.AppDomainManager.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. | |
| 'devenv.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. | |
| 'devenv.exe' (CLR v4.0.30319: DefaultDomain): Loaded 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'. Skipped loading symbols. Module is optimized and the debugge |
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
| GitHub pull request #10919 of commit 6976d7905b2b8fe8b8ebb0fe83c2fc70bce05df0, no merge conflicts. | |
| Setting status of 6976d7905b2b8fe8b8ebb0fe83c2fc70bce05df0 to PENDING with url https://jenkins.mono-project.com/job/build-package-osx-mono-pullrequest/277/ and message: 'Build started for merge commit.' | |
| Using context: OS X Package | |
| Checking out git git://github.com/mono/mono.git into /var/lib/jenkins/jobs/build-package-osx-mono-pullrequest/workspace@script to read scripts/ci/pipeline/osx-package.groovy | |
| > git rev-parse --is-inside-work-tree # timeout=100 | |
| Fetching changes from the remote Git repository | |
| > git config remote.origin.url git://github.com/mono/mono.git # timeout=100 | |
| Fetching upstream changes from git://github.com/mono/mono.git | |
| > git --version # timeout=100 | |
| using GIT_SSH to set credentials monojenkins GH user |
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
| { | |
| "runtimeTarget": { | |
| "name": ".NETStandard,Version=v2.0/", | |
| "signature": "d9c83112ea4a75ad4ff0d3609949d41acd3b7b5d" | |
| }, | |
| "compilationOptions": {}, | |
| "targets": { | |
| ".NETStandard,Version=v2.0": {}, | |
| ".NETStandard,Version=v2.0/": { | |
| "FSharp.Data.SqlProvider/1.0.0": { |