| 130 | } |
| 131 | |
| 132 | static void VerifyBcastValues(bcast_struct bcast) { |
| 133 | int new_index, new_size; |
| 134 | EXPECT_EQ(Status::OK(), |
| 135 | GetBroadcastSize(bcast.input.index, bcast.input.in_size, |
| 136 | bcast.input.ksize, bcast.input.stride, |
| 137 | bcast.input.pad_size, &new_index, &new_size)); |
| 138 | EXPECT_EQ(bcast.output.new_index, new_index); |
| 139 | EXPECT_EQ(bcast.output.new_size, new_size); |
| 140 | } |
| 141 | }; |
| 142 | |
| 143 | TEST_F(OpsUtilTest, Get2dOutputSizeNegativeSizeTest) { |
nothing calls this directly
no test coverage detected