nightly iaca-markers

This library includes the IACA assembly commands to profile your code with the IACA tool

1 unstable release

Uses old Rust 2015

0.0.1 May 31, 2015

Apache-2.0

6KB

iaca-markers-rs

Adds IACA compatible macros for rust to identify and fix bottlenecks and improve throughput.

Usage

When compiling with IACA enabled your executable will not run.

  1. Instead add the macros around the section you wish to profile as below.
  2. Compile in release mode: cargo build --release.
  3. Run IACA from the link above (eg.): ./iaca.sh -64 ~/path/to/exe/release/librustlib.rlib
  4. Enjoy the extremely detailed output.
#![feature(asm)]

#[macro_use] extern crate iaca_markers;

fn main() {
    let mut a = 0;
    for i in 0..100 {
        iaca_start!();

        // Do some work
        a += i;
    }
    iaca_end!();

    println!("Summed to {}", a);
}

Notes

I have run this successfully with rustc 1.2.0-nightly (e4c64a149 2015-05-27). It may require beta or nightly rust for the moment until the asm feature is stabilized.


lib.rs:

Provides macros to bench your application with iaca

No runtime deps