From 9d2d1f82c518a9a55d0c96741a312211f7712c35 Mon Sep 17 00:00:00 2001 From: Reed Wanderman-Milne Date: Wed, 6 May 2020 10:20:28 -0700 Subject: [PATCH] Fix layout_optimizer_test on Windows. The issue was an initializer_list was used after it went out of scope. PiperOrigin-RevId: 310177457 Change-Id: Iaa6dbb17bd29caaf7f1e4d668b4c8d29a2e2997d --- tensorflow/core/grappler/optimizers/layout_optimizer_test.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tensorflow/core/grappler/optimizers/layout_optimizer_test.cc b/tensorflow/core/grappler/optimizers/layout_optimizer_test.cc index 2d6e201f084..c92693adef4 100644 --- a/tensorflow/core/grappler/optimizers/layout_optimizer_test.cc +++ b/tensorflow/core/grappler/optimizers/layout_optimizer_test.cc @@ -84,8 +84,9 @@ class LayoutOptimizerTest : public GrapplerTest { ops::Const(s->WithOpName("Filter"), Input::Initializer(filter_data)); ops::Conv2D::Attrs attrs; + const int kExplicitPaddings[] = {0, 0, 1, 2, 3, 4, 0, 0}; if (padding == "EXPLICIT") { - attrs = attrs.ExplicitPaddings({0, 0, 1, 2, 3, 4, 0, 0}); + attrs = attrs.ExplicitPaddings(kExplicitPaddings); } Output conv = ops::Conv2D(s->WithOpName("Conv2D").WithDevice(device), input,