Since library backed with libm::powf I just want to make sure that you know that it has performance like so:
libm::powf time: [12.695 µs 12.790 µs 12.903 µs]
system: powf time: [2.8821 µs 3.1647 µs 3.6485 µs]
If it's somewhere in a hot point you're done. Not counting bad accuracy also.
Originally posted by @awxkee in #72 (comment)
Since one of the stated goals of this library is performance and correctness it makes sense to be more aware of the actual cost of some operations and weigh the design choices, most notably as here no_std, against their influence on these goals.
If it's somewhere in a hot point you're done. Not counting bad accuracy also.
Originally posted by @awxkee in #72 (comment)
Since one of the stated goals of this library is performance and correctness it makes sense to be more aware of the actual cost of some operations and weigh the design choices, most notably as here
no_std, against their influence on these goals.