Skip to content

Commit

Permalink
Address Reyna PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lockshaw committed Sep 12, 2024
1 parent 3440b3e commit b8d5ec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/op-attrs/test/src/op-attrs/ops/conv_2d.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TEST_SUITE(FF_TEST_SUITE) {
};

SUBCASE("with bias") {
Conv2DAttrs attrs = make_attrs(true);
Conv2DAttrs attrs = make_attrs(/*use_bias=*/true);

std::vector<IncomingTensorRole> result =
get_conv2d_incoming_tensor_roles(attrs);
Expand All @@ -34,7 +34,7 @@ TEST_SUITE(FF_TEST_SUITE) {
}

SUBCASE("without bias") {
Conv2DAttrs attrs = make_attrs(false);
Conv2DAttrs attrs = make_attrs(/*use_bias=*/false);

std::vector<IncomingTensorRole> result =
get_conv2d_incoming_tensor_roles(attrs);
Expand Down

0 comments on commit b8d5ec3

Please sign in to comment.