Skip to content

Commit 3d3054c

Browse files
committed
Merge branch 'martijn/expr-interpreter' of ssh://github.com/halide/halide into martijn/expr-interpreter
2 parents 596d4fa + 6275a55 commit 3d3054c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/ExprInterpreter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,8 +664,8 @@ void test_scalar_equivalence() {
664664
<< ", Got: " << std::get<int64_t>(eval_res.lanes[0]);
665665

666666
// 2. Float scalar math equivalence
667-
using std::sin;
668667
using Halide::sin;
668+
using std::sin;
669669
auto math_test_float = [](const auto &x, const auto &y) {
670670
return (x * y) - sin(x / (y + 1.0f));
671671
};

test/internal.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include "CSE.h"
66
#include "CodeGen_C.h"
77
#include "Deinterleave.h"
8+
#include "ExprInterpreter.h"
89
#include "Func.h"
910
#include "Generator.h"
1011
#include "IR.h"

0 commit comments

Comments
 (0)