Skip to content

Commit a7b2a70

Browse files
committed
rem comments
1 parent 87f9d4b commit a7b2a70

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BitFaster.Caching.Benchmarks/Lfu/SketchFrequency.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public int FrequencyFlat()
4949
return count;
5050
}
5151

52-
//[Benchmark(OperationsPerInvoke = iterations)]
52+
[Benchmark(OperationsPerInvoke = iterations)]
5353
public int FrequencyFlatAvx()
5454
{
5555
int count = 0;

BitFaster.Caching.Benchmarks/Lfu/SketchIncrement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void IncFlat()
4747
}
4848
}
4949

50-
//[Benchmark(OperationsPerInvoke = iterations)]
50+
[Benchmark(OperationsPerInvoke = iterations)]
5151
public void IncFlatAvx()
5252
{
5353
for (int i = 0; i < iterations; i++)

0 commit comments

Comments
 (0)