-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request grpc#11272 from jtattermusch/csharp_microbenchmarks
C# add microbenchmarks project
- Loading branch information
Showing
12 changed files
with
381 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
root = true | ||
[**] | ||
end_of_line = LF | ||
indent_style = space | ||
indent_size = 4 | ||
insert_final_newline = true | ||
tab_width = 4 |
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 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 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 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 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
bin | ||
obj |
28 changes: 28 additions & 0 deletions
28
src/csharp/Grpc.Microbenchmarks/Grpc.Microbenchmarks.csproj
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="..\Grpc.Core\Version.csproj.include" /> | ||
<Import Project="..\Grpc.Core\Common.csproj.include" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net45;netcoreapp1.0</TargetFrameworks> | ||
<AssemblyName>Grpc.Microbenchmarks</AssemblyName> | ||
<OutputType>Exe</OutputType> | ||
<PackageId>Grpc.Microbenchmarks</PackageId> | ||
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);portable-net45</PackageTargetFallback> | ||
<RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">1.0.4</RuntimeFrameworkVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="../Grpc.Core/Grpc.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Grpc.Core\Version.cs" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#region Copyright notice and license | ||
|
||
// Copyright 2015, Google Inc. | ||
// All rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without | ||
// modification, are permitted provided that the following conditions are | ||
// met: | ||
// | ||
// * Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimer. | ||
// * Redistributions in binary form must reproduce the above | ||
// copyright notice, this list of conditions and the following disclaimer | ||
// in the documentation and/or other materials provided with the | ||
// distribution. | ||
// * Neither the name of Google Inc. nor the names of its | ||
// contributors may be used to endorse or promote products derived from | ||
// this software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
#endregion | ||
|
||
using System; | ||
using Grpc.Core; | ||
using Grpc.Core.Internal; | ||
using Grpc.Core.Logging; | ||
|
||
namespace Grpc.Microbenchmarks | ||
{ | ||
class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
GrpcEnvironment.SetLogger(new TextWriterLogger(Console.Error)); | ||
var benchmark = new SendMessageBenchmark(); | ||
benchmark.Init(); | ||
foreach (int threadCount in new int[] {1, 1, 2, 4, 8, 12}) | ||
{ | ||
benchmark.Run(threadCount, 4 * 1000 * 1000, 0); | ||
} | ||
benchmark.Cleanup(); | ||
} | ||
} | ||
} |
106 changes: 106 additions & 0 deletions
106
src/csharp/Grpc.Microbenchmarks/SendMessageBenchmark.cs
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 |
---|---|---|
@@ -0,0 +1,106 @@ | ||
#region Copyright notice and license | ||
|
||
// Copyright 2015, Google Inc. | ||
// All rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without | ||
// modification, are permitted provided that the following conditions are | ||
// met: | ||
// | ||
// * Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimer. | ||
// * Redistributions in binary form must reproduce the above | ||
// copyright notice, this list of conditions and the following disclaimer | ||
// in the documentation and/or other materials provided with the | ||
// distribution. | ||
// * Neither the name of Google Inc. nor the names of its | ||
// contributors may be used to endorse or promote products derived from | ||
// this software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
#endregion | ||
|
||
using System; | ||
using System.Threading; | ||
using Grpc.Core; | ||
using Grpc.Core.Internal; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
|
||
namespace Grpc.Microbenchmarks | ||
{ | ||
public class SendMessageBenchmark | ||
{ | ||
static readonly NativeMethods Native = NativeMethods.Get(); | ||
|
||
GrpcEnvironment environment; | ||
|
||
public void Init() | ||
{ | ||
Native.grpcsharp_test_override_method("grpcsharp_call_start_batch", "nop"); | ||
environment = GrpcEnvironment.AddRef(); | ||
} | ||
|
||
public void Cleanup() | ||
{ | ||
GrpcEnvironment.ReleaseAsync().Wait(); | ||
// TODO(jtattermusch): track GC stats | ||
} | ||
|
||
public void Run(int threadCount, int iterations, int payloadSize) | ||
{ | ||
Console.WriteLine(string.Format("SendMessageBenchmark: threads={0}, iterations={1}, payloadSize={2}", threadCount, iterations, payloadSize)); | ||
var threadedBenchmark = new ThreadedBenchmark(threadCount, () => ThreadBody(iterations, payloadSize)); | ||
threadedBenchmark.Run(); | ||
} | ||
|
||
private void ThreadBody(int iterations, int payloadSize) | ||
{ | ||
// TODO(jtattermusch): parametrize by number of pending completions. | ||
// TODO(jtattermusch): parametrize by cached/non-cached BatchContextSafeHandle | ||
|
||
var completionRegistry = new CompletionRegistry(environment); | ||
var cq = CompletionQueueSafeHandle.CreateAsync(completionRegistry); | ||
var call = CreateFakeCall(cq); | ||
|
||
var sendCompletionHandler = new SendCompletionHandler((success) => { }); | ||
var payload = new byte[payloadSize]; | ||
var writeFlags = default(WriteFlags); | ||
|
||
var stopwatch = Stopwatch.StartNew(); | ||
for (int i = 0; i < iterations; i++) | ||
{ | ||
call.StartSendMessage(sendCompletionHandler, payload, writeFlags, false); | ||
var callback = completionRegistry.Extract(completionRegistry.LastRegisteredKey); | ||
callback(true); | ||
} | ||
stopwatch.Stop(); | ||
Console.WriteLine("Elapsed millis: " + stopwatch.ElapsedMilliseconds); | ||
|
||
cq.Dispose(); | ||
} | ||
|
||
private static CallSafeHandle CreateFakeCall(CompletionQueueSafeHandle cq) | ||
{ | ||
var call = CallSafeHandle.CreateFake(new IntPtr(0xdead), cq); | ||
bool success = false; | ||
while (!success) | ||
{ | ||
// avoid calling destroy on a nonexistent grpc_call pointer | ||
call.DangerousAddRef(ref success); | ||
} | ||
return call; | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
#region Copyright notice and license | ||
|
||
// Copyright 2015, Google Inc. | ||
// All rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without | ||
// modification, are permitted provided that the following conditions are | ||
// met: | ||
// | ||
// * Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimer. | ||
// * Redistributions in binary form must reproduce the above | ||
// copyright notice, this list of conditions and the following disclaimer | ||
// in the documentation and/or other materials provided with the | ||
// distribution. | ||
// * Neither the name of Google Inc. nor the names of its | ||
// contributors may be used to endorse or promote products derived from | ||
// this software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
#endregion | ||
|
||
using System; | ||
using System.Threading; | ||
using Grpc.Core; | ||
using Grpc.Core.Internal; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
|
||
namespace Grpc.Microbenchmarks | ||
{ | ||
public class ThreadedBenchmark | ||
{ | ||
List<ThreadStart> runners; | ||
|
||
public ThreadedBenchmark(IEnumerable<ThreadStart> runners) | ||
{ | ||
this.runners = new List<ThreadStart>(runners); | ||
} | ||
|
||
public ThreadedBenchmark(int threadCount, Action threadBody) | ||
{ | ||
this.runners = new List<ThreadStart>(); | ||
for (int i = 0; i < threadCount; i++) | ||
{ | ||
this.runners.Add(new ThreadStart(() => threadBody())); | ||
} | ||
} | ||
|
||
public void Run() | ||
{ | ||
Console.WriteLine("Running threads."); | ||
var threads = new List<Thread>(); | ||
for (int i = 0; i < runners.Count; i++) | ||
{ | ||
var thread = new Thread(runners[i]); | ||
thread.Start(); | ||
threads.Add(thread); | ||
} | ||
|
||
foreach (var thread in threads) | ||
{ | ||
thread.Join(); | ||
} | ||
Console.WriteLine("All threads finished."); | ||
} | ||
} | ||
} |
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
Oops, something went wrong.