Skip to content

Commit

Permalink
bench: increase nops bench iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloudef committed Feb 1, 2025
1 parent 7f47d28 commit 14cefef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bench/aio_nops.zig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub const std_options: std.Options = .{
.log_level = .debug,
};

const TOTAL_NOPS = 2_500_000;
const TOTAL_NOPS = 2_500_000_00;

pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
Expand Down
2 changes: 1 addition & 1 deletion bench/coro_nops.zig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub const std_options: std.Options = .{
.log_level = .debug,
};

const TOTAL_NOPS = 2_500_000;
const TOTAL_NOPS = 2_500_000_00;

fn nopLoop(total: usize) !void {
var i: usize = 0;
Expand Down

0 comments on commit 14cefef

Please sign in to comment.