We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f70ba0 commit 8993b67Copy full SHA for 8993b67
test/test_trigonometric.cpp
@@ -13,6 +13,7 @@
13
#ifndef XSIMD_NO_SUPPORTED_ARCHITECTURE
14
15
#include "test_utils.hpp"
16
+#include <iostream>
17
18
template <class B>
19
struct trigonometric_test
@@ -184,6 +185,7 @@ struct trigonometric_test
184
185
detail::load_batch(rhs, input, i);
186
out = atan2(in, rhs);
187
detail::store_batch(out, res, i);
188
+ if(res != expected) std::cerr << i << " " << atan_input[i] << " " << input[i] << "\n";
189
}
190
size_t diff = detail::get_nb_diff(res, expected);
191
INFO("atan2");
0 commit comments