Skip to content

Commit

Permalink
Fix Windows build issue.
Browse files Browse the repository at this point in the history
Signed-off-by: xipingya <[email protected]>
  • Loading branch information
xipingyan committed Apr 18, 2024
1 parent 9081e17 commit a57ed83
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ class SubgraphSelectPD : virtual public SubgraphBaseStaticTest {
squeeze,
ov::opset8::Constant::create(element::i64, Shape{}, {1}),
ov::element::i64);
auto create_conv = [](const std::shared_ptr<ov::Node>& input_node) {
auto create_conv = [&](const std::shared_ptr<ov::Node>& input_node) {
auto conv = std::make_shared<ov::opset8::Convolution>(
input_node,
ov::test::utils::deprecated::make_constant(ov::element::f16,
Shape{1, const1 / 2, 3, 3},
Shape{1, const1 / 2u, 3, 3},
std::vector<float>{},
true,
0.1f,
Expand Down

0 comments on commit a57ed83

Please sign in to comment.