@@ -25,8 +25,9 @@ namespace sw {
25
25
26
26
Scalar numerator = e_of_z - Scalar (1.0 );
27
27
if (verbose) {
28
- std::cout << " exp(" << z << " ) = " << to_binary (e_of_z) << " : " << e_of_z << ' \n ' ;
29
- std::cout << " numerator = " << to_binary (numerator) << " : " << numerator << ' \n ' ;
28
+ std::cout << " E(" << z << " )\n " ;
29
+ std::cout << " exp(z = " << z << " ) = " << to_binary (e_of_z) << " : " << e_of_z << ' \n ' ;
30
+ std::cout << " (exp(z) - 1.0) = " << to_binary (numerator) << " : " << numerator << ' \n ' ;
30
31
std::cout << " E(" << z << " ) = " << to_binary (numerator / z) << " : " << numerator / z << ' \n ' ;
31
32
}
32
33
return numerator / z;
@@ -60,9 +61,10 @@ namespace sw {
60
61
Scalar one_over_xplus = Scalar (1.0 ) / xplus;
61
62
Scalar q_of_x = abs_xminus - one_over_xplus;
62
63
if (verbose) {
63
- std::cout << " 1st term : " << to_binary (abs_xminus) << " : " << abs_xminus << ' \n ' ;
64
- std::cout << " 2nd term : " << to_binary (one_over_xplus) << " : " << one_over_xplus << ' \n ' ;
65
- std::cout << " function : " << to_binary (q_of_x) << " : " << q_of_x << ' \n ' ;
64
+ std::cout << " Q(x=" << x << " )\n " ;
65
+ std::cout << " 1st term : " << to_binary (abs_xminus) << " : " << abs_xminus << ' \n ' ;
66
+ std::cout << " 2nd term : " << to_binary (one_over_xplus) << " : " << one_over_xplus << ' \n ' ;
67
+ std::cout << " Q(x=" << x << " ) : " << to_binary (q_of_x) << " : " << q_of_x << ' \n ' ;
66
68
}
67
69
return q_of_x;
68
70
}
@@ -88,9 +90,10 @@ namespace sw {
88
90
Scalar qx_squared = q_of_x * q_of_x;
89
91
Scalar e_of_qx_squared = E (qx_squared, verbose);
90
92
if (verbose) {
91
- std::cout << " Q(" << x << " ) = " << to_binary (q_of_x) << " : " << q_of_x << ' \n ' ;
92
- std::cout << " Q(x)*Q(x) = " << to_binary (qx_squared) << " : " << qx_squared << ' \n ' ;
93
- std::cout << " E(Q^2) = " << to_binary (e_of_qx_squared) << " : " << e_of_qx_squared << ' \n ' ;
93
+ std::cout << " H(x=" << x << " )\n " ;
94
+ std::cout << " Q(x=" << x << " ) = " << to_binary (q_of_x) << " : " << q_of_x << ' \n ' ;
95
+ std::cout << " Q(x)*Q(x) = " << to_binary (qx_squared) << " : " << qx_squared << ' \n ' ;
96
+ std::cout << " E(Q^2) = " << to_binary (e_of_qx_squared) << " : " << e_of_qx_squared << ' \n ' ;
94
97
}
95
98
return e_of_qx_squared;
96
99
}
@@ -148,6 +151,7 @@ try {
148
151
std::cout << " Question: why does double-double work, but cfloat<128.11,subnormals> not work?\n " ;
149
152
H (cfloat < 128 , 11 , std::uint32_t , true >{ 15 .0f }, true );
150
153
H (dd{ 15 .0f }, true );
154
+ std::cout << " Because the exp() function for cfloat<128,11> is not implemented yet\n " ;
151
155
}
152
156
catch (...) {
153
157
}
0 commit comments