Skip to content

Commit b0c606e

Browse files
committed
WIP: tracing why cfloat<128> and double-double have different behavior on Kahan Challenge
1 parent c9d7956 commit b0c606e

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

applications/accuracy/mathematics/kahan_challenge.cpp

+12-8
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ namespace sw {
2525

2626
Scalar numerator = e_of_z - Scalar(1.0);
2727
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';
3031
std::cout << "E(" << z << ") = " << to_binary(numerator / z) << " : " << numerator / z << '\n';
3132
}
3233
return numerator / z;
@@ -60,9 +61,10 @@ namespace sw {
6061
Scalar one_over_xplus = Scalar(1.0) / xplus;
6162
Scalar q_of_x = abs_xminus - one_over_xplus;
6263
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';
6668
}
6769
return q_of_x;
6870
}
@@ -88,9 +90,10 @@ namespace sw {
8890
Scalar qx_squared = q_of_x * q_of_x;
8991
Scalar e_of_qx_squared = E(qx_squared, verbose);
9092
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';
9497
}
9598
return e_of_qx_squared;
9699
}
@@ -148,6 +151,7 @@ try {
148151
std::cout << "Question: why does double-double work, but cfloat<128.11,subnormals> not work?\n";
149152
H(cfloat < 128, 11, std::uint32_t, true>{ 15.0f }, true);
150153
H(dd{ 15.0f }, true);
154+
std::cout << "Because the exp() function for cfloat<128,11> is not implemented yet\n";
151155
}
152156
catch(...) {
153157
}

0 commit comments

Comments
 (0)