mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
Naming consistency
This commit is contained in:
parent
8a34bd2bf1
commit
705ace6f0a
|
@ -306,7 +306,7 @@ void hwf_manager::div(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf &
|
|||
#pragma fp_contract(on)
|
||||
#endif
|
||||
|
||||
void hwf_manager::fused_mul_add(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf const &z, hwf & o) {
|
||||
void hwf_manager::fma(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf const &z, hwf & o) {
|
||||
// CMW: fused_mul_add is not available on most CPUs. As of 2012, only Itanium,
|
||||
// Intel Sandybridge and AMD Bulldozers support that (via AVX).
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ public:
|
|||
void mul(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf & o);
|
||||
void div(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf & o);
|
||||
|
||||
void fused_mul_add(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf const &z, hwf & o);
|
||||
void fma(mpf_rounding_mode rm, hwf const & x, hwf const & y, hwf const &z, hwf & o);
|
||||
|
||||
void sqrt(mpf_rounding_mode rm, hwf const & x, hwf & o);
|
||||
|
||||
|
|
Loading…
Reference in a new issue