Added SIMD rsqrt bench.

This commit is contained in:
Branimir Karadžić
2017-02-26 18:30:16 -08:00
parent 0eb9ea707a
commit 0a03261329
2 changed files with 123 additions and 1 deletions

View File

@@ -1,4 +1,8 @@
#include <bx/bx.h>
/*
* Copyright 2010-2017 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
*/
#include <bx/timer.h>
#include <bx/handlealloc.h>
#include <bx/maputil.h>
@@ -99,5 +103,8 @@ int main()
printf("HandleHashMap: %15f\n", double(elapsed) );
}
extern void simd_bench();
simd_bench();
return EXIT_SUCCESS;
}