-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tests #317
Comments
@EgorBot -amd -arm -aws_amd -profiler -pr 112019 using BenchmarkDotNet.Attributes;
public class Bench
{
byte[] _arr1 = new byte[200];
byte[] _arr2 = new byte[200];
[Benchmark]
[Arguments(128)]
public void Copy(int elems)
{
Span<byte> span1 = _arr1;
Span<byte> span2 = _arr2;
for (int i = 0; i < elems; i++)
span1[i] = span2[i];
}
} |
Benchmark results on
|
Method | Toolchain | elems | Mean | Error | Ratio |
---|---|---|---|---|---|
Copy | Main | 128 | 55.03 ns | 0.816 ns | 1.00 |
Copy | PR | 128 | 53.93 ns | 0.464 ns | 0.98 |
Profiling for Bench_Copy
:
SVG flamegraph: Main vs PR 🔥
Speedscope flamegraph: Main vs PR
Hot asm code: Main vs PR
HW counters: Main vs PR
cc @EgorBo (agent_logs.txt). EgorBot manual: link.
Benchmark results on
|
Method | Toolchain | elems | Mean | Error | Ratio |
---|---|---|---|---|---|
Copy | Main | 128 | 52.88 ns | 0.036 ns | 1.00 |
Copy | PR | 128 | 52.85 ns | 0.018 ns | 1.00 |
Profiling for Bench_Copy
:
SVG flamegraph: Main vs PR 🔥
Speedscope flamegraph: Main vs PR
Hot asm code: Main vs PR
HW counters: Main vs PR
cc @EgorBo (agent_logs.txt). EgorBot manual: link.
Benchmark results on
|
Method | Toolchain | elems | Mean | Error | Ratio |
---|---|---|---|---|---|
Copy | Main | 128 | 61.50 ns | 0.073 ns | 1.00 |
Copy | PR | 128 | 61.48 ns | 0.067 ns | 1.00 |
Profiling for Bench_Copy
:
SVG flamegraph: Main vs PR 🔥
Speedscope flamegraph: Main vs PR
Hot asm code: Main vs PR
HW counters: Main vs PR
cc @EgorBo (agent_logs.txt). EgorBot manual: link.
@EgorBot -amd -arm -aws_amd -profiler -pr 113575 using BenchmarkDotNet.Attributes;
public class Bench
{
byte[] _arr1 = new byte[200];
byte[] _arr2 = new byte[200];
[Benchmark]
[Arguments(128)]
public void Copy(int elems)
{
Span<byte> span1 = _arr1;
Span<byte> span2 = _arr2;
for (int i = 0; i < elems; i++)
span1[i] = span2[i];
}
} |
Benchmark results on
|
Method | Toolchain | elems | Mean | Error | Ratio |
---|---|---|---|---|---|
Copy | Main | 128 | 52.57 ns | 0.039 ns | 1.00 |
Copy | PR | 128 | 36.12 ns | 0.026 ns | 0.69 |
Profiling for Bench_Copy
:
SVG flamegraph: Main vs PR 🔥
Speedscope flamegraph: Main vs PR
Hot asm code: Main vs PR
HW counters: Main vs PR
cc @EgorBo (agent_logs.txt). EgorBot manual: link.
Benchmark results on
|
Method | Toolchain | elems | Mean | Error | Ratio |
---|---|---|---|---|---|
Copy | Main | 128 | 52.86 ns | 0.013 ns | 1.00 |
Copy | PR | 128 | 36.32 ns | 0.004 ns | 0.69 |
Profiling for Bench_Copy
:
SVG flamegraph: Main vs PR 🔥
Speedscope flamegraph: Main vs PR
Hot asm code: Main vs PR
HW counters: Main vs PR
cc @EgorBo (agent_logs.txt). EgorBot manual: link.
Benchmark results on
|
Method | Toolchain | elems | Mean | Error | Ratio |
---|---|---|---|---|---|
Copy | Main | 128 | 61.43 ns | 0.062 ns | 1.00 |
Copy | PR | 128 | 45.25 ns | 0.028 ns | 0.74 |
Profiling for Bench_Copy
:
SVG flamegraph: Main vs PR 🔥
Speedscope flamegraph: Main vs PR
Hot asm code: Main vs PR
HW counters: Main vs PR
cc @EgorBo (agent_logs.txt). EgorBot manual: link.
@EgorBot -intel -pr 113715
|
No description provided.
The text was updated successfully, but these errors were encountered: