We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 596d4fa + 6275a55 commit 3d3054cCopy full SHA for 3d3054c
src/ExprInterpreter.cpp
@@ -664,8 +664,8 @@ void test_scalar_equivalence() {
664
<< ", Got: " << std::get<int64_t>(eval_res.lanes[0]);
665
666
// 2. Float scalar math equivalence
667
- using std::sin;
668
using Halide::sin;
+ using std::sin;
669
auto math_test_float = [](const auto &x, const auto &y) {
670
return (x * y) - sin(x / (y + 1.0f));
671
};
test/internal.cpp
@@ -5,6 +5,7 @@
5
#include "CSE.h"
6
#include "CodeGen_C.h"
7
#include "Deinterleave.h"
8
+#include "ExprInterpreter.h"
9
#include "Func.h"
10
#include "Generator.h"
11
#include "IR.h"
0 commit comments