Add more math fixes
This commit is contained in:
@@ -192,7 +192,7 @@ BENCH(powl, bench) {
|
||||
double _pow(double, double) asm("pow");
|
||||
float _powf(float, float) asm("powf");
|
||||
long double _powl(long double, long double) asm("powl");
|
||||
EZBENCH2("pow", donothing, _pow(.7, .2)); /* ~51ns */
|
||||
EZBENCH2("powf", donothing, _powf(.7, .2)); /* ~52ns */
|
||||
EZBENCH2("powl", donothing, _powl(.7, .2)); /* ~53ns */
|
||||
EZBENCH2("pow", donothing, _pow(.7, .2)); /* ~56ns */
|
||||
EZBENCH2("powf", donothing, _powf(.7, .2)); /* ~56ns */
|
||||
EZBENCH2("powl", donothing, _powl(.7, .2)); /* ~56ns */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user