Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
zrr1999 committed Sep 10, 2022
1 parent 6390800 commit 97bfc39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cinn/runtime/cpu/host_intrinsics_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ TEST(find_value_nd, basic) {
Expr M(10), N(20);
Placeholder<float> x("x", {M, N});
auto y = Compute({N}, [&](Expr i) {
return CallExtern("cinn_host_find_float_nd", {x, M, x({Expr(5), Expr(3)}), i, N}, "y");
});
return CallExtern("cinn_host_find_float_nd", {x, M, x({Expr(5), Expr(3)}), i, N});
}, "y");

auto stages = CreateStages({y});

Expand Down

0 comments on commit 97bfc39

Please sign in to comment.