├── .gitattributes ├── .gitignore ├── IntegrationTests ├── ConsoleApp-2.0 │ ├── App.config │ ├── ConsoleApp-2.0.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SampleBenchmark.cs ├── ConsoleApp-3.0 │ ├── App.config │ ├── ConsoleApp-3.0.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SampleBenchmark.cs ├── ConsoleApp-3.5 │ ├── App.config │ ├── ConsoleApp-3.5.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SampleBenchmark.cs ├── ConsoleApp-4.0 │ ├── App.config │ ├── ConsoleApp-4.0.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SampleBenchmark.cs └── ConsoleApp-4.5 │ ├── App.config │ ├── ConsoleApp-4.5.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── SampleBenchmark.cs ├── MiniBench.Core ├── BenchmarkAttribute.cs ├── BenchmarkResult.cs ├── Blackhole.cs ├── CategoryAttribute.cs ├── CommandLineArgs.cs ├── IBenchmarkTarget.cs ├── MiniBench.Core.csproj ├── MonoOptions.cs ├── Options.cs ├── OptionsBuilder.cs ├── Profiling │ ├── AggregatedProfilerResult.cs │ ├── AggregationMode.cs │ ├── GCProfiler.cs │ ├── IInternalProfiler.cs │ ├── ListExtensions.cs │ ├── Profiler.cs │ └── ProfilerResult.cs ├── Properties │ └── AssemblyInfo.cs ├── Runner.cs ├── Utils.cs └── readme.md ├── MiniBench.Demo ├── JonSkeetReadonlyFields.cs ├── MiniBench.Demo.csproj ├── Properties │ └── AssemblyInfo.cs ├── SampleBenchmark.cs ├── SampleConstantFolding.cs ├── SampleDeadCodeElimination.cs ├── SampleSlowDelegates.cs ├── SampleStopwatchTimestamp.cs ├── app.config └── packages.config ├── MiniBench.sln ├── MiniBench ├── App.config ├── BenchmarkTemplate.cs ├── CodeGenerator.cs ├── MiniBench.csproj ├── Program.cs ├── ProjectFileParser.cs ├── ProjectSettings.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── NuGet-Package ├── Build-NuGet-Package.bat ├── MiniBench.nuspec ├── NuGet.exe ├── content │ └── SampleBenchmark.cs.pp └── tools │ └── install.ps1 ├── README.md └── Useful Info ├── Different Blackhole methods - assembly code.txt ├── Different Blackhole methods - results.txt ├── Generated Benchmark Sample.png ├── JMH Statistical Calculations.xlsx ├── MeasureIt - Compile Delegate v. Direct Method Call - cutdown version.htm ├── MeasureIt - Compile Delegate v. Direct Method Call.htm ├── MiniBench - Blackhole with Volatile Read - Complete Output.txt ├── MiniBench - Blackhole with Volatile Read.txt ├── MiniBench - Simple Blackhole - Complete Output.txt ├── MiniBench - Simple Blackhole.txt ├── MiniBench - Stopwatch v DateTime - Latency and Granularity.txt ├── Minibench - Brain Dump.md └── WinPerfAsmProfiler.patch /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/.gitignore -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-2.0/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-2.0/App.config -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-2.0/ConsoleApp-2.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-2.0/ConsoleApp-2.0.csproj -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-2.0/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-2.0/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-2.0/SampleBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-2.0/SampleBenchmark.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-3.0/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-3.0/App.config -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-3.0/ConsoleApp-3.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-3.0/ConsoleApp-3.0.csproj -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-3.0/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-3.0/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-3.0/SampleBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-3.0/SampleBenchmark.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-3.5/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-3.5/App.config -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-3.5/ConsoleApp-3.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-3.5/ConsoleApp-3.5.csproj -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-3.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-3.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-3.5/SampleBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-3.5/SampleBenchmark.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-4.0/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-4.0/App.config -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-4.0/ConsoleApp-4.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-4.0/ConsoleApp-4.0.csproj -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-4.0/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-4.0/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-4.0/SampleBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-4.0/SampleBenchmark.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-4.5/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-4.5/App.config -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-4.5/ConsoleApp-4.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-4.5/ConsoleApp-4.5.csproj -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-4.5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-4.5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IntegrationTests/ConsoleApp-4.5/SampleBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/IntegrationTests/ConsoleApp-4.5/SampleBenchmark.cs -------------------------------------------------------------------------------- /MiniBench.Core/BenchmarkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/BenchmarkAttribute.cs -------------------------------------------------------------------------------- /MiniBench.Core/BenchmarkResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/BenchmarkResult.cs -------------------------------------------------------------------------------- /MiniBench.Core/Blackhole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Blackhole.cs -------------------------------------------------------------------------------- /MiniBench.Core/CategoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/CategoryAttribute.cs -------------------------------------------------------------------------------- /MiniBench.Core/CommandLineArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/CommandLineArgs.cs -------------------------------------------------------------------------------- /MiniBench.Core/IBenchmarkTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/IBenchmarkTarget.cs -------------------------------------------------------------------------------- /MiniBench.Core/MiniBench.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/MiniBench.Core.csproj -------------------------------------------------------------------------------- /MiniBench.Core/MonoOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/MonoOptions.cs -------------------------------------------------------------------------------- /MiniBench.Core/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Options.cs -------------------------------------------------------------------------------- /MiniBench.Core/OptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/OptionsBuilder.cs -------------------------------------------------------------------------------- /MiniBench.Core/Profiling/AggregatedProfilerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Profiling/AggregatedProfilerResult.cs -------------------------------------------------------------------------------- /MiniBench.Core/Profiling/AggregationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Profiling/AggregationMode.cs -------------------------------------------------------------------------------- /MiniBench.Core/Profiling/GCProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Profiling/GCProfiler.cs -------------------------------------------------------------------------------- /MiniBench.Core/Profiling/IInternalProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Profiling/IInternalProfiler.cs -------------------------------------------------------------------------------- /MiniBench.Core/Profiling/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Profiling/ListExtensions.cs -------------------------------------------------------------------------------- /MiniBench.Core/Profiling/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Profiling/Profiler.cs -------------------------------------------------------------------------------- /MiniBench.Core/Profiling/ProfilerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Profiling/ProfilerResult.cs -------------------------------------------------------------------------------- /MiniBench.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MiniBench.Core/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Runner.cs -------------------------------------------------------------------------------- /MiniBench.Core/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/Utils.cs -------------------------------------------------------------------------------- /MiniBench.Core/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Core/readme.md -------------------------------------------------------------------------------- /MiniBench.Demo/JonSkeetReadonlyFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/JonSkeetReadonlyFields.cs -------------------------------------------------------------------------------- /MiniBench.Demo/MiniBench.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/MiniBench.Demo.csproj -------------------------------------------------------------------------------- /MiniBench.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MiniBench.Demo/SampleBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/SampleBenchmark.cs -------------------------------------------------------------------------------- /MiniBench.Demo/SampleConstantFolding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/SampleConstantFolding.cs -------------------------------------------------------------------------------- /MiniBench.Demo/SampleDeadCodeElimination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/SampleDeadCodeElimination.cs -------------------------------------------------------------------------------- /MiniBench.Demo/SampleSlowDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/SampleSlowDelegates.cs -------------------------------------------------------------------------------- /MiniBench.Demo/SampleStopwatchTimestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/SampleStopwatchTimestamp.cs -------------------------------------------------------------------------------- /MiniBench.Demo/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/app.config -------------------------------------------------------------------------------- /MiniBench.Demo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.Demo/packages.config -------------------------------------------------------------------------------- /MiniBench.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench.sln -------------------------------------------------------------------------------- /MiniBench/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/App.config -------------------------------------------------------------------------------- /MiniBench/BenchmarkTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/BenchmarkTemplate.cs -------------------------------------------------------------------------------- /MiniBench/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/CodeGenerator.cs -------------------------------------------------------------------------------- /MiniBench/MiniBench.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/MiniBench.csproj -------------------------------------------------------------------------------- /MiniBench/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/Program.cs -------------------------------------------------------------------------------- /MiniBench/ProjectFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/ProjectFileParser.cs -------------------------------------------------------------------------------- /MiniBench/ProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/ProjectSettings.cs -------------------------------------------------------------------------------- /MiniBench/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MiniBench/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/MiniBench/packages.config -------------------------------------------------------------------------------- /NuGet-Package/Build-NuGet-Package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/NuGet-Package/Build-NuGet-Package.bat -------------------------------------------------------------------------------- /NuGet-Package/MiniBench.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/NuGet-Package/MiniBench.nuspec -------------------------------------------------------------------------------- /NuGet-Package/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/NuGet-Package/NuGet.exe -------------------------------------------------------------------------------- /NuGet-Package/content/SampleBenchmark.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/NuGet-Package/content/SampleBenchmark.cs.pp -------------------------------------------------------------------------------- /NuGet-Package/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/NuGet-Package/tools/install.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/README.md -------------------------------------------------------------------------------- /Useful Info/Different Blackhole methods - assembly code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/Different Blackhole methods - assembly code.txt -------------------------------------------------------------------------------- /Useful Info/Different Blackhole methods - results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/Different Blackhole methods - results.txt -------------------------------------------------------------------------------- /Useful Info/Generated Benchmark Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/Generated Benchmark Sample.png -------------------------------------------------------------------------------- /Useful Info/JMH Statistical Calculations.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/JMH Statistical Calculations.xlsx -------------------------------------------------------------------------------- /Useful Info/MeasureIt - Compile Delegate v. Direct Method Call - cutdown version.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/MeasureIt - Compile Delegate v. Direct Method Call - cutdown version.htm -------------------------------------------------------------------------------- /Useful Info/MeasureIt - Compile Delegate v. Direct Method Call.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/MeasureIt - Compile Delegate v. Direct Method Call.htm -------------------------------------------------------------------------------- /Useful Info/MiniBench - Blackhole with Volatile Read - Complete Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/MiniBench - Blackhole with Volatile Read - Complete Output.txt -------------------------------------------------------------------------------- /Useful Info/MiniBench - Blackhole with Volatile Read.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/MiniBench - Blackhole with Volatile Read.txt -------------------------------------------------------------------------------- /Useful Info/MiniBench - Simple Blackhole - Complete Output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/MiniBench - Simple Blackhole - Complete Output.txt -------------------------------------------------------------------------------- /Useful Info/MiniBench - Simple Blackhole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/MiniBench - Simple Blackhole.txt -------------------------------------------------------------------------------- /Useful Info/MiniBench - Stopwatch v DateTime - Latency and Granularity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/MiniBench - Stopwatch v DateTime - Latency and Granularity.txt -------------------------------------------------------------------------------- /Useful Info/Minibench - Brain Dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/Minibench - Brain Dump.md -------------------------------------------------------------------------------- /Useful Info/WinPerfAsmProfiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattwarren/MiniBench-WIP/HEAD/Useful Info/WinPerfAsmProfiler.patch --------------------------------------------------------------------------------