Skip to content

Commit

Permalink
fix(//tests/core/converters/activations): Complete tensors in prelu test
Browse files Browse the repository at this point in the history
Signed-off-by: Naren Dasan <naren@narendasan.com>
Signed-off-by: Naren Dasan <narens@nvidia.com>
  • Loading branch information
narendasan committed Aug 4, 2020
1 parent 02299b7 commit 0e90f78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/converters/test_activation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ TEST(Converters, ATenHardTanhCustomRangeConvertsCorrectly) {
TEST(Converters, ATenPReLUConvertsCorrectly) {
const auto graph = R"IR(
graph(%0 : Tensor,
%1 : Float(1)):
%1 : Float(1:1)):
%3 : Tensor = aten::prelu(%0, %1)
return (%3))IR";

Expand All @@ -135,7 +135,7 @@ TEST(Converters, ATenPReLUConvertsCorrectly) {
TEST(Converters, ATenPReLUMultiChannelConvertsCorrectly) {
const auto graph = R"IR(
graph(%0 : Tensor,
%1 : Float(10)):
%1 : Float(10:1)):
%3 : Tensor = aten::prelu(%0, %1)
return (%3))IR";

Expand Down

0 comments on commit 0e90f78

Please sign in to comment.