Coder Social home page Coder Social logo

snail's Introduction

TL;DR

A minimal benchmark library.

TODO:

  • The current implementation uses std.time.Timer for the measurement. It's not 100% clear what happens if the current thread gets suspended and resumes later at some point. Will the Timer's monotonic clock skip the ideal time or include it with the measurement?

  • For some reason, explicit measurement with ready() took longer than the run(). Might be additional overhead from start() and stop(). Nevertheless figure out what's causing this delay!

    • It's the overhead for sure! and the ctx itself taking majority of the times for simple add(10, 20). Figure out how to eliminate this time.
  • Suspend and resume start() and stop() n amount of times in real code to benchmark a non-contagious code block.

Examples

const snail = @import("snail.zig");

pub fn main() void {
    // With default code iteration
    snail.benchmark("addition", measure_add, null);
    snail.benchmark("addition", measure_add_explicit, null);

    // With manual code iteration
    snail.benchmark("addition", measure_add, 1000);
    snail.benchmark("addition", measure_add_explicit, 1000);
}


fn add(x: i32, y: i32) i32 {
    return x + y;
}

fn measure_add(ctx: *snail.Context) void {
    while (ctx.run()) {
        _ = add(56, 44);
    }
}

fn measure_add_explicit(ctx: *snail.Context) void {
    while (ctx.ready()) {
        ctx.start();
        defer ctx.stop()
        _ = add(56, 44);
    }
}

snail's People

Contributors

al-mehedi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.