This commit is contained in:
Branimir Karadžić
2018-01-28 19:11:35 -08:00
parent d652f283b2
commit 3c4b40744f

View File

@@ -49,7 +49,7 @@ void math_bench()
result = 0.0f;
for (float xx = 0.0f; xx < max; xx += 0.1f)
{
result += bx::sqrtRef(xx);
result += bx::sqrtSimd(xx);
}
elapsed += bx::getHPCounter();