Skip to content

Instantly share code, notes, and snippets.

@nek023
Last active December 16, 2015 05:38
Show Gist options
  • Save nek023/5385589 to your computer and use it in GitHub Desktop.
Save nek023/5385589 to your computer and use it in GitHub Desktop.
Benchmark macros for Objective-C
#ifndef __BM__
#define __BM__
#define BM_BEGIN(name) NSDate *__bm_##name = [NSDate date];
#define BM_END(name) NSLog(@"%s: %f sec", #name, [[NSDate date] timeIntervalSinceDate:__bm_##name]);
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment