Skip to content

Commit 26d2483

Browse files
halide-ci[bot]mcourteaux
authored andcommitted
Apply pre-commit auto-fixes
1 parent 2a84238 commit 26d2483

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 & 1 deletion
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"
@@ -18,7 +19,6 @@
1819
#include "Solve.h"
1920
#include "SpirvIR.h"
2021
#include "UniquifyVariableNames.h"
21-
#include "ExprInterpreter.h"
2222

2323
using namespace Halide;
2424
using namespace Halide::Internal;

0 commit comments

Comments
 (0)