GeneralGDA

Is "in" worth it? №1

Dec 15th, 2021 (edited)
1,017
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.51 KB | None | 0 0
  1. using System;
  2. using System.Collections.Immutable;
  3. using BenchmarkDotNet.Attributes;
  4. using BenchmarkDotNet.Jobs;
  5. using BenchmarkDotNet.Running;
  6.  
  7. namespace Benchmark
  8. {
  9.     [SimpleJob(RuntimeMoniker.CoreRt50)]
  10.     public class Md5VsSha256
  11.     {
  12.         [Params(10, 100, 1000)]
  13.         public int N;
  14.  
  15.         private ImmutableArray<int> data;
  16.  
  17.         [GlobalSetup]
  18.         public void Setup()
  19.         {
  20.             var random = new Random();
  21.            
  22.             var builder = ImmutableArray.CreateBuilder<int>(N);
  23.             for (int i = 0; i < N; ++i)
  24.             {
  25.                 builder.Add(random.Next());
  26.             }
  27.             data = builder.MoveToImmutable();
  28.         }
  29.  
  30.         static int ViaRef(in ImmutableArray<int> array)
  31.         {
  32.             int sum = 0;
  33.             foreach (var i in array)
  34.             {
  35.                 sum += i;
  36.             }
  37.             return sum;
  38.         }
  39.  
  40.         static int ViaValue(ImmutableArray<int> array)
  41.         {
  42.             int sum = 0;
  43.             foreach (var i in array)
  44.             {
  45.                 sum += i;
  46.             }
  47.             return sum;
  48.         }
  49.  
  50.         [Benchmark]
  51.         public int Ref()
  52.         {
  53.             return ViaRef(data);
  54.         }
  55.  
  56.         [Benchmark]
  57.         public int Value()
  58.         {
  59.             return ViaValue(data);
  60.         }
  61.     }
  62.  
  63.     public static class Program
  64.     {
  65.         public static void Main()
  66.         {
  67.             BenchmarkRunner.Run<Md5VsSha256>();
  68.         }
  69.     }
  70. }
  71.  
Add Comment
Please, Sign In to add comment