Skip to content

Commit

Permalink
rem comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bitfaster committed Nov 21, 2024
1 parent 87f9d4b commit a7b2a70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BitFaster.Caching.Benchmarks/Lfu/SketchFrequency.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public int FrequencyFlat()
return count;
}

//[Benchmark(OperationsPerInvoke = iterations)]
[Benchmark(OperationsPerInvoke = iterations)]
public int FrequencyFlatAvx()
{
int count = 0;
Expand Down
2 changes: 1 addition & 1 deletion BitFaster.Caching.Benchmarks/Lfu/SketchIncrement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void IncFlat()
}
}

//[Benchmark(OperationsPerInvoke = iterations)]
[Benchmark(OperationsPerInvoke = iterations)]
public void IncFlatAvx()
{
for (int i = 0; i < iterations; i++)
Expand Down

0 comments on commit a7b2a70

Please sign in to comment.