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 44338cc commit 6390800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cinn/runtime/cpu/host_intrinsics_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ 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});
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 6390800

Please sign in to comment.