diff --git a/tensorflow/core/grappler/costs/BUILD b/tensorflow/core/grappler/costs/BUILD index 37623f89972..ee2100b4010 100644 --- a/tensorflow/core/grappler/costs/BUILD +++ b/tensorflow/core/grappler/costs/BUILD @@ -14,6 +14,12 @@ filegroup( visibility = ["//tensorflow:__subpackages__"], ) +filegroup( + name = "graph_properties_testdata", + srcs = glob(["graph_properties_testdata/*.pbtxt"]), + visibility = ["//visibility:public"], +) + load( "//tensorflow/core:platform/default/build_config.bzl", "tf_proto_library", @@ -54,11 +60,13 @@ cc_test( size = "small", srcs = ["graph_properties_test.cc"], args = ["--heap_check=local"], # The GPU tracer leaks memory + data = [":graph_properties_testdata"], deps = [ ":graph_properties", "//tensorflow/cc:cc_ops", "//tensorflow/cc:scope", "//tensorflow/core:framework", + "//tensorflow/core:lib", "//tensorflow/core:lib_proto_parsing", "//tensorflow/core:protos_all_cc", "//tensorflow/core:tensor_testutil", @@ -67,6 +75,7 @@ cc_test( "//tensorflow/core/grappler:grappler_item", "//tensorflow/core/grappler/clusters:single_machine", "//tensorflow/core/grappler/inputs:trivial_test_graph_input_yielder", + "//tensorflow/core/grappler/inputs:utils", ], ) diff --git a/tensorflow/core/grappler/costs/graph_properties_test.cc b/tensorflow/core/grappler/costs/graph_properties_test.cc index 109f973956e..5d7691dd710 100644 --- a/tensorflow/core/grappler/costs/graph_properties_test.cc +++ b/tensorflow/core/grappler/costs/graph_properties_test.cc @@ -22,6 +22,8 @@ limitations under the License. #include "tensorflow/core/grappler/clusters/single_machine.h" #include "tensorflow/core/grappler/grappler_item.h" #include "tensorflow/core/grappler/inputs/trivial_test_graph_input_yielder.h" +#include "tensorflow/core/grappler/inputs/utils.h" +#include "tensorflow/core/lib/io/path.h" #include "tensorflow/core/lib/strings/strcat.h" #include "tensorflow/core/platform/protobuf.h" #include "tensorflow/core/platform/test.h" @@ -30,6 +32,8 @@ namespace tensorflow { namespace grappler { namespace { +const char kTestDataPath[] = "core/grappler/costs/graph_properties_testdata"; + class GraphPropertiesTest : public ::testing::Test { public: void SetUp() override { @@ -311,340 +315,6 @@ TEST_F(GraphPropertiesTest, Queues) { } TEST_F(GraphPropertiesTest, MergeWithoutLoops) { - // Python code used to generate the graph is below. - const string gdef_ascii = R"EOF( -node { - name: "Const" - op: "Const" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 7 - } - } - } -} -node { - name: "Const_1" - op: "Const" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 5 - } - } - } -} -node { - name: "ones" - op: "Const" - attr { - key: "dtype" - value { - type: DT_FLOAT - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_FLOAT - tensor_shape { - dim { - size: 1 - } - dim { - size: 1 - } - dim { - size: 1 - } - } - float_val: 1.0 - } - } - } -} -node { - name: "Less" - op: "Less" - input: "Const" - input: "Const_1" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "cond/Switch" - op: "Switch" - input: "Less" - input: "Less" - attr { - key: "T" - value { - type: DT_BOOL - } - } -} -node { - name: "cond/switch_t" - op: "Identity" - input: "cond/Switch:1" - attr { - key: "T" - value { - type: DT_BOOL - } - } -} -node { - name: "cond/switch_f" - op: "Identity" - input: "cond/Switch" - attr { - key: "T" - value { - type: DT_BOOL - } - } -} -node { - name: "cond/pred_id" - op: "Identity" - input: "Less" - attr { - key: "T" - value { - type: DT_BOOL - } - } -} -node { - name: "cond/concat/axis" - op: "Const" - input: "^cond/switch_t" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "cond/concat/Switch" - op: "Switch" - input: "ones" - input: "cond/pred_id" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "_class" - value { - list { - s: "loc:@ones" - } - } - } -} -node { - name: "cond/concat" - op: "ConcatV2" - input: "cond/concat/Switch:1" - input: "cond/concat/Switch:1" - input: "cond/concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -node { - name: "cond/concat_1/axis" - op: "Const" - input: "^cond/switch_f" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 1 - } - } - } -} -node { - name: "cond/concat_1/Switch" - op: "Switch" - input: "ones" - input: "cond/pred_id" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "_class" - value { - list { - s: "loc:@ones" - } - } - } -} -node { - name: "cond/concat_1" - op: "ConcatV2" - input: "cond/concat_1/Switch" - input: "cond/concat_1/Switch" - input: "cond/concat_1/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -node { - name: "cond/Merge" - op: "Merge" - input: "cond/concat" - input: "cond/concat_1" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "concat/axis" - op: "Const" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 2 - } - } - } -} -node { - name: "concat" - op: "ConcatV2" - input: "cond/Merge" - input: "cond/Merge" - input: "concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -versions { - producer: 21 -} - )EOF"; - // Test graph produced in python using: /* with tf.Graph().as_default(): @@ -660,7 +330,9 @@ versions { */ GrapplerItem item; - CHECK(protobuf::TextFormat::ParseFromString(gdef_ascii, &item.graph)); + string filename = io::JoinPath(testing::TensorFlowSrcRoot(), kTestDataPath, + "merge_without_loops.pbtxt"); + TF_CHECK_OK(ReadGraphDefFromFile(filename, &item.graph)); GraphProperties properties(item); TF_CHECK_OK(properties.InferStatically()); @@ -676,381 +348,6 @@ versions { } TEST_F(GraphPropertiesTest, WhileLoop) { - // Python code used to generate the graph is below. - const string gdef_ascii = R"EOF( -node { - name: "Const" - op: "Const" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "ones" - op: "Const" - attr { - key: "dtype" - value { - type: DT_FLOAT - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_FLOAT - tensor_shape { - dim { - size: 2 - } - dim { - size: 2 - } - } - float_val: 1.0 - } - } - } -} -node { - name: "while/Enter" - op: "Enter" - input: "Const" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/Enter_1" - op: "Enter" - input: "ones" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/Merge" - op: "Merge" - input: "while/Enter" - input: "while/NextIteration" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Merge_1" - op: "Merge" - input: "while/Enter_1" - input: "while/NextIteration_1" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/Less/y" - op: "Const" - input: "^while/Merge" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 10 - } - } - } -} -node { - name: "while/Less" - op: "Less" - input: "while/Merge" - input: "while/Less/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/LoopCond" - op: "LoopCond" - input: "while/Less" -} -node { - name: "while/Switch" - op: "Switch" - input: "while/Merge" - input: "while/LoopCond" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/Merge" - } - } - } -} -node { - name: "while/Switch_1" - op: "Switch" - input: "while/Merge_1" - input: "while/LoopCond" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/Merge_1" - } - } - } -} -node { - name: "while/Identity" - op: "Identity" - input: "while/Switch:1" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Identity_1" - op: "Identity" - input: "while/Switch_1:1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/add/y" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 1 - } - } - } -} -node { - name: "while/add" - op: "Add" - input: "while/Identity" - input: "while/add/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/concat/axis" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "while/concat" - op: "ConcatV2" - input: "while/Identity_1" - input: "while/Identity_1" - input: "while/concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -node { - name: "while/NextIteration" - op: "NextIteration" - input: "while/add" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/NextIteration_1" - op: "NextIteration" - input: "while/concat" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/Exit" - op: "Exit" - input: "while/Switch" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Exit_1" - op: "Exit" - input: "while/Switch_1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -versions { - producer: 21 -} - )EOF"; - // Test graph produced in python using: /* with tf.Graph().as_default(): @@ -1066,7 +363,9 @@ versions { */ GrapplerItem item; - CHECK(protobuf::TextFormat::ParseFromString(gdef_ascii, &item.graph)); + string filename = io::JoinPath(testing::TensorFlowSrcRoot(), kTestDataPath, + "while_loop.pbtxt"); + TF_CHECK_OK(ReadGraphDefFromFile(filename, &item.graph)); GraphProperties properties(item); TF_CHECK_OK(properties.InferStatically()); @@ -1081,726 +380,6 @@ versions { } TEST_F(GraphPropertiesTest, NestedLoop) { - // Python code used to generate the graph is below. - const string gdef_ascii = R"EOF( -node { - name: "Const" - op: "Const" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "ones" - op: "Const" - attr { - key: "dtype" - value { - type: DT_FLOAT - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_FLOAT - tensor_shape { - dim { - size: 1 - } - dim { - size: 1 - } - dim { - size: 1 - } - } - float_val: 1.0 - } - } - } -} -node { - name: "while/Enter" - op: "Enter" - input: "Const" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/Enter_1" - op: "Enter" - input: "ones" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/Merge" - op: "Merge" - input: "while/Enter" - input: "while/NextIteration" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Merge_1" - op: "Merge" - input: "while/Enter_1" - input: "while/NextIteration_1" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/Less/y" - op: "Const" - input: "^while/Merge" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 3 - } - } - } -} -node { - name: "while/Less" - op: "Less" - input: "while/Merge" - input: "while/Less/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/LoopCond" - op: "LoopCond" - input: "while/Less" -} -node { - name: "while/Switch" - op: "Switch" - input: "while/Merge" - input: "while/LoopCond" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/Merge" - } - } - } -} -node { - name: "while/Switch_1" - op: "Switch" - input: "while/Merge_1" - input: "while/LoopCond" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/Merge_1" - } - } - } -} -node { - name: "while/Identity" - op: "Identity" - input: "while/Switch:1" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Identity_1" - op: "Identity" - input: "while/Switch_1:1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/while/Const" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "while/while/Enter" - op: "Enter" - input: "while/while/Const" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "frame_name" - value { - s: "while/while/while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/while/Enter_1" - op: "Enter" - input: "while/Identity_1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "frame_name" - value { - s: "while/while/while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/while/Merge" - op: "Merge" - input: "while/while/Enter" - input: "while/while/NextIteration" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/Merge_1" - op: "Merge" - input: "while/while/Enter_1" - input: "while/while/NextIteration_1" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/while/Less/y" - op: "Const" - input: "^while/while/Merge" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 3 - } - } - } -} -node { - name: "while/while/Less" - op: "Less" - input: "while/while/Merge" - input: "while/while/Less/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/LoopCond" - op: "LoopCond" - input: "while/while/Less" -} -node { - name: "while/while/Switch" - op: "Switch" - input: "while/while/Merge" - input: "while/while/LoopCond" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/while/Merge" - } - } - } -} -node { - name: "while/while/Switch_1" - op: "Switch" - input: "while/while/Merge_1" - input: "while/while/LoopCond" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/while/Merge_1" - } - } - } -} -node { - name: "while/while/Identity" - op: "Identity" - input: "while/while/Switch:1" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/Identity_1" - op: "Identity" - input: "while/while/Switch_1:1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/while/add/y" - op: "Const" - input: "^while/while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 1 - } - } - } -} -node { - name: "while/while/add" - op: "Add" - input: "while/while/Identity" - input: "while/while/add/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/concat/axis" - op: "Const" - input: "^while/while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 2 - } - } - } -} -node { - name: "while/while/concat" - op: "ConcatV2" - input: "while/while/Identity_1" - input: "while/while/Identity_1" - input: "while/while/concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/NextIteration" - op: "NextIteration" - input: "while/while/add" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/NextIteration_1" - op: "NextIteration" - input: "while/while/concat" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/while/Exit" - op: "Exit" - input: "while/while/Switch" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/Exit_1" - op: "Exit" - input: "while/while/Switch_1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/add/y" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 1 - } - } - } -} -node { - name: "while/add" - op: "Add" - input: "while/Identity" - input: "while/add/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/concat/axis" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "while/concat" - op: "ConcatV2" - input: "while/Identity_1" - input: "while/Identity_1" - input: "while/concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -node { - name: "while/NextIteration" - op: "NextIteration" - input: "while/add" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/NextIteration_1" - op: "NextIteration" - input: "while/concat" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/Exit" - op: "Exit" - input: "while/Switch" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Exit_1" - op: "Exit" - input: "while/Switch_1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -versions { - producer: 21 -} - )EOF"; - // Test graph produced in python using: /* with tf.Graph().as_default(): @@ -1834,7 +413,9 @@ versions { */ GrapplerItem item; - CHECK(protobuf::TextFormat::ParseFromString(gdef_ascii, &item.graph)); + string filename = io::JoinPath(testing::TensorFlowSrcRoot(), kTestDataPath, + "nested_loop.pbtxt"); + TF_CHECK_OK(ReadGraphDefFromFile(filename, &item.graph)); GraphProperties properties(item); TF_CHECK_OK(properties.InferStatically()); @@ -1858,832 +439,6 @@ versions { } TEST_F(GraphPropertiesTest, LoopsAndQueues) { - // Python code used to generate the graph is below. - const string gdef_ascii = R"EOF( -node { - name: "Const" - op: "Const" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "fifo_queue" - op: "FIFOQueueV2" - attr { - key: "capacity" - value { - i: 1 - } - } - attr { - key: "component_types" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "container" - value { - s: "" - } - } - attr { - key: "shapes" - value { - list { - } - } - } - attr { - key: "shared_name" - value { - s: "" - } - } -} -node { - name: "ones" - op: "Const" - attr { - key: "dtype" - value { - type: DT_FLOAT - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_FLOAT - tensor_shape { - dim { - size: 1 - } - dim { - size: 1 - } - dim { - size: 1 - } - } - float_val: 1.0 - } - } - } -} -node { - name: "while/Enter" - op: "Enter" - input: "Const" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/Enter_1" - op: "Enter" - input: "ones" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/Merge" - op: "Merge" - input: "while/Enter" - input: "while/NextIteration" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Merge_1" - op: "Merge" - input: "while/Enter_1" - input: "while/NextIteration_1" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/Less/y" - op: "Const" - input: "^while/Merge" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 3 - } - } - } -} -node { - name: "while/Less" - op: "Less" - input: "while/Merge" - input: "while/Less/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/LoopCond" - op: "LoopCond" - input: "while/Less" -} -node { - name: "while/Switch" - op: "Switch" - input: "while/Merge" - input: "while/LoopCond" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/Merge" - } - } - } -} -node { - name: "while/Switch_1" - op: "Switch" - input: "while/Merge_1" - input: "while/LoopCond" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/Merge_1" - } - } - } -} -node { - name: "while/Identity" - op: "Identity" - input: "while/Switch:1" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Identity_1" - op: "Identity" - input: "while/Switch_1:1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/fifo_queue_enqueue/Enter" - op: "Enter" - input: "fifo_queue" - attr { - key: "T" - value { - type: DT_RESOURCE - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: true - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/fifo_queue_enqueue" - op: "QueueEnqueueV2" - input: "while/fifo_queue_enqueue/Enter" - input: "while/Identity_1" - attr { - key: "Tcomponents" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "timeout_ms" - value { - i: -1 - } - } -} -node { - name: "while/concat/axis" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 2 - } - } - } -} -node { - name: "while/concat" - op: "ConcatV2" - input: "while/Identity_1" - input: "while/Identity_1" - input: "while/concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -node { - name: "while/fifo_queue_Dequeue" - op: "QueueDequeueV2" - input: "while/fifo_queue_enqueue/Enter" - input: "^while/Identity" - attr { - key: "component_types" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "timeout_ms" - value { - i: -1 - } - } -} -node { - name: "while/while/Const" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "while/while/Enter" - op: "Enter" - input: "while/while/Const" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "frame_name" - value { - s: "while/while/while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/while/Enter_1" - op: "Enter" - input: "while/fifo_queue_Dequeue" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "frame_name" - value { - s: "while/while/while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/while/Merge" - op: "Merge" - input: "while/while/Enter" - input: "while/while/NextIteration" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/Merge_1" - op: "Merge" - input: "while/while/Enter_1" - input: "while/while/NextIteration_1" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/while/Less/y" - op: "Const" - input: "^while/while/Merge" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 3 - } - } - } -} -node { - name: "while/while/Less" - op: "Less" - input: "while/while/Merge" - input: "while/while/Less/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/LoopCond" - op: "LoopCond" - input: "while/while/Less" -} -node { - name: "while/while/Switch" - op: "Switch" - input: "while/while/Merge" - input: "while/while/LoopCond" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/while/Merge" - } - } - } -} -node { - name: "while/while/Switch_1" - op: "Switch" - input: "while/while/Merge_1" - input: "while/while/LoopCond" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/while/Merge_1" - } - } - } -} -node { - name: "while/while/Identity" - op: "Identity" - input: "while/while/Switch:1" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/Identity_1" - op: "Identity" - input: "while/while/Switch_1:1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/while/add/y" - op: "Const" - input: "^while/while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 1 - } - } - } -} -node { - name: "while/while/add" - op: "Add" - input: "while/while/Identity" - input: "while/while/add/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/concat/axis" - op: "Const" - input: "^while/while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "while/while/concat" - op: "ConcatV2" - input: "while/while/Identity_1" - input: "while/while/Identity_1" - input: "while/while/concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/NextIteration" - op: "NextIteration" - input: "while/while/add" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/NextIteration_1" - op: "NextIteration" - input: "while/while/concat" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/while/Exit" - op: "Exit" - input: "while/while/Switch" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/while/Exit_1" - op: "Exit" - input: "while/while/Switch_1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/add/y" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 1 - } - } - } -} -node { - name: "while/add" - op: "Add" - input: "while/Identity" - input: "while/add/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/NextIteration" - op: "NextIteration" - input: "while/add" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/NextIteration_1" - op: "NextIteration" - input: "while/concat" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/Exit" - op: "Exit" - input: "while/Switch" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Exit_1" - op: "Exit" - input: "while/Switch_1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -versions { - producer: 21 -} - )EOF"; - // Test graph produced in python using: /* with tf.Graph().as_default(): @@ -2721,7 +476,9 @@ versions { */ GrapplerItem item; - CHECK(protobuf::TextFormat::ParseFromString(gdef_ascii, &item.graph)); + string filename = io::JoinPath(testing::TensorFlowSrcRoot(), kTestDataPath, + "loops_and_queues.pbtxt"); + TF_CHECK_OK(ReadGraphDefFromFile(filename, &item.graph)); GraphProperties properties(item); TF_CHECK_OK(properties.InferStatically()); @@ -2745,579 +502,6 @@ versions { } TEST_F(GraphPropertiesTest, QueuesAndLoops) { - // Python code used to generate the graph is below. - const string gdef_ascii = R"EOF( -node { - name: "Const" - op: "Const" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "fifo_queue" - op: "FIFOQueueV2" - attr { - key: "capacity" - value { - i: 1 - } - } - attr { - key: "component_types" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "container" - value { - s: "" - } - } - attr { - key: "shapes" - value { - list { - } - } - } - attr { - key: "shared_name" - value { - s: "" - } - } -} -node { - name: "ones" - op: "Const" - attr { - key: "dtype" - value { - type: DT_FLOAT - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_FLOAT - tensor_shape { - dim { - size: 2 - } - dim { - size: 2 - } - } - float_val: 1.0 - } - } - } -} -node { - name: "fifo_queue_enqueue" - op: "QueueEnqueueV2" - input: "fifo_queue" - input: "ones" - attr { - key: "Tcomponents" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "timeout_ms" - value { - i: -1 - } - } -} -node { - name: "fifo_queue_1" - op: "FIFOQueueV2" - attr { - key: "capacity" - value { - i: 1 - } - } - attr { - key: "component_types" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "container" - value { - s: "" - } - } - attr { - key: "shapes" - value { - list { - } - } - } - attr { - key: "shared_name" - value { - s: "" - } - } -} -node { - name: "fifo_queue_Dequeue" - op: "QueueDequeueV2" - input: "fifo_queue" - attr { - key: "component_types" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "timeout_ms" - value { - i: -1 - } - } -} -node { - name: "while/Enter" - op: "Enter" - input: "Const" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/Enter_1" - op: "Enter" - input: "fifo_queue_Dequeue" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "frame_name" - value { - s: "while/while/" - } - } - attr { - key: "is_constant" - value { - b: false - } - } - attr { - key: "parallel_iterations" - value { - i: 10 - } - } -} -node { - name: "while/Merge" - op: "Merge" - input: "while/Enter" - input: "while/NextIteration" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Merge_1" - op: "Merge" - input: "while/Enter_1" - input: "while/NextIteration_1" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/Less/y" - op: "Const" - input: "^while/Merge" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 10 - } - } - } -} -node { - name: "while/Less" - op: "Less" - input: "while/Merge" - input: "while/Less/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/LoopCond" - op: "LoopCond" - input: "while/Less" -} -node { - name: "while/Switch" - op: "Switch" - input: "while/Merge" - input: "while/LoopCond" - attr { - key: "T" - value { - type: DT_INT32 - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/Merge" - } - } - } -} -node { - name: "while/Switch_1" - op: "Switch" - input: "while/Merge_1" - input: "while/LoopCond" - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "_class" - value { - list { - s: "loc:@while/Merge_1" - } - } - } -} -node { - name: "while/Identity" - op: "Identity" - input: "while/Switch:1" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Identity_1" - op: "Identity" - input: "while/Switch_1:1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/add/y" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 1 - } - } - } -} -node { - name: "while/add" - op: "Add" - input: "while/Identity" - input: "while/add/y" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/concat/axis" - op: "Const" - input: "^while/Identity" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 0 - } - } - } -} -node { - name: "while/concat" - op: "ConcatV2" - input: "while/Identity_1" - input: "while/Identity_1" - input: "while/concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -node { - name: "while/NextIteration" - op: "NextIteration" - input: "while/add" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/NextIteration_1" - op: "NextIteration" - input: "while/concat" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "while/Exit" - op: "Exit" - input: "while/Switch" - attr { - key: "T" - value { - type: DT_INT32 - } - } -} -node { - name: "while/Exit_1" - op: "Exit" - input: "while/Switch_1" - attr { - key: "T" - value { - type: DT_FLOAT - } - } -} -node { - name: "fifo_queue_1_enqueue" - op: "QueueEnqueueV2" - input: "fifo_queue_1" - input: "while/Exit_1" - attr { - key: "Tcomponents" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "timeout_ms" - value { - i: -1 - } - } -} -node { - name: "fifo_queue_1_Dequeue" - op: "QueueDequeueV2" - input: "fifo_queue_1" - attr { - key: "component_types" - value { - list { - type: DT_FLOAT - } - } - } - attr { - key: "timeout_ms" - value { - i: -1 - } - } -} -node { - name: "concat/axis" - op: "Const" - attr { - key: "dtype" - value { - type: DT_INT32 - } - } - attr { - key: "value" - value { - tensor { - dtype: DT_INT32 - tensor_shape { - } - int_val: 1 - } - } - } -} -node { - name: "concat" - op: "ConcatV2" - input: "fifo_queue_1_Dequeue" - input: "fifo_queue_1_Dequeue" - input: "concat/axis" - attr { - key: "N" - value { - i: 2 - } - } - attr { - key: "T" - value { - type: DT_FLOAT - } - } - attr { - key: "Tidx" - value { - type: DT_INT32 - } - } -} -versions { - producer: 21 -} - )EOF"; - // Test graph produced in python using: /* with tf.Graph().as_default(): @@ -3344,7 +528,9 @@ versions { */ GrapplerItem item; - CHECK(protobuf::TextFormat::ParseFromString(gdef_ascii, &item.graph)); + string filename = io::JoinPath(testing::TensorFlowSrcRoot(), kTestDataPath, + "queues_and_loops.pbtxt"); + TF_CHECK_OK(ReadGraphDefFromFile(filename, &item.graph)); GraphProperties properties(item); TF_CHECK_OK(properties.InferStatically()); diff --git a/tensorflow/core/grappler/costs/graph_properties_testdata/loops_and_queues.pbtxt b/tensorflow/core/grappler/costs/graph_properties_testdata/loops_and_queues.pbtxt new file mode 100644 index 00000000000..4baf3f00164 --- /dev/null +++ b/tensorflow/core/grappler/costs/graph_properties_testdata/loops_and_queues.pbtxt @@ -0,0 +1,822 @@ +node { + name: "Const" + op: "Const" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "fifo_queue" + op: "FIFOQueueV2" + attr { + key: "capacity" + value { + i: 1 + } + } + attr { + key: "component_types" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "container" + value { + s: "" + } + } + attr { + key: "shapes" + value { + list { + } + } + } + attr { + key: "shared_name" + value { + s: "" + } + } +} +node { + name: "ones" + op: "Const" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_FLOAT + tensor_shape { + dim { + size: 1 + } + dim { + size: 1 + } + dim { + size: 1 + } + } + float_val: 1.0 + } + } + } +} +node { + name: "while/Enter" + op: "Enter" + input: "Const" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/Enter_1" + op: "Enter" + input: "ones" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/Merge" + op: "Merge" + input: "while/Enter" + input: "while/NextIteration" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Merge_1" + op: "Merge" + input: "while/Enter_1" + input: "while/NextIteration_1" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/Less/y" + op: "Const" + input: "^while/Merge" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 3 + } + } + } +} +node { + name: "while/Less" + op: "Less" + input: "while/Merge" + input: "while/Less/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/LoopCond" + op: "LoopCond" + input: "while/Less" +} +node { + name: "while/Switch" + op: "Switch" + input: "while/Merge" + input: "while/LoopCond" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/Merge" + } + } + } +} +node { + name: "while/Switch_1" + op: "Switch" + input: "while/Merge_1" + input: "while/LoopCond" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/Merge_1" + } + } + } +} +node { + name: "while/Identity" + op: "Identity" + input: "while/Switch:1" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Identity_1" + op: "Identity" + input: "while/Switch_1:1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/fifo_queue_enqueue/Enter" + op: "Enter" + input: "fifo_queue" + attr { + key: "T" + value { + type: DT_RESOURCE + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: true + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/fifo_queue_enqueue" + op: "QueueEnqueueV2" + input: "while/fifo_queue_enqueue/Enter" + input: "while/Identity_1" + attr { + key: "Tcomponents" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "timeout_ms" + value { + i: -1 + } + } +} +node { + name: "while/concat/axis" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 2 + } + } + } +} +node { + name: "while/concat" + op: "ConcatV2" + input: "while/Identity_1" + input: "while/Identity_1" + input: "while/concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +node { + name: "while/fifo_queue_Dequeue" + op: "QueueDequeueV2" + input: "while/fifo_queue_enqueue/Enter" + input: "^while/Identity" + attr { + key: "component_types" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "timeout_ms" + value { + i: -1 + } + } +} +node { + name: "while/while/Const" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "while/while/Enter" + op: "Enter" + input: "while/while/Const" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "frame_name" + value { + s: "while/while/while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/while/Enter_1" + op: "Enter" + input: "while/fifo_queue_Dequeue" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "frame_name" + value { + s: "while/while/while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/while/Merge" + op: "Merge" + input: "while/while/Enter" + input: "while/while/NextIteration" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/Merge_1" + op: "Merge" + input: "while/while/Enter_1" + input: "while/while/NextIteration_1" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/while/Less/y" + op: "Const" + input: "^while/while/Merge" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 3 + } + } + } +} +node { + name: "while/while/Less" + op: "Less" + input: "while/while/Merge" + input: "while/while/Less/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/LoopCond" + op: "LoopCond" + input: "while/while/Less" +} +node { + name: "while/while/Switch" + op: "Switch" + input: "while/while/Merge" + input: "while/while/LoopCond" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/while/Merge" + } + } + } +} +node { + name: "while/while/Switch_1" + op: "Switch" + input: "while/while/Merge_1" + input: "while/while/LoopCond" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/while/Merge_1" + } + } + } +} +node { + name: "while/while/Identity" + op: "Identity" + input: "while/while/Switch:1" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/Identity_1" + op: "Identity" + input: "while/while/Switch_1:1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/while/add/y" + op: "Const" + input: "^while/while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 1 + } + } + } +} +node { + name: "while/while/add" + op: "Add" + input: "while/while/Identity" + input: "while/while/add/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/concat/axis" + op: "Const" + input: "^while/while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "while/while/concat" + op: "ConcatV2" + input: "while/while/Identity_1" + input: "while/while/Identity_1" + input: "while/while/concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/NextIteration" + op: "NextIteration" + input: "while/while/add" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/NextIteration_1" + op: "NextIteration" + input: "while/while/concat" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/while/Exit" + op: "Exit" + input: "while/while/Switch" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/Exit_1" + op: "Exit" + input: "while/while/Switch_1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/add/y" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 1 + } + } + } +} +node { + name: "while/add" + op: "Add" + input: "while/Identity" + input: "while/add/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/NextIteration" + op: "NextIteration" + input: "while/add" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/NextIteration_1" + op: "NextIteration" + input: "while/concat" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/Exit" + op: "Exit" + input: "while/Switch" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Exit_1" + op: "Exit" + input: "while/Switch_1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +versions { + producer: 21 +} diff --git a/tensorflow/core/grappler/costs/graph_properties_testdata/merge_without_loops.pbtxt b/tensorflow/core/grappler/costs/graph_properties_testdata/merge_without_loops.pbtxt new file mode 100644 index 00000000000..e707fcb3cd7 --- /dev/null +++ b/tensorflow/core/grappler/costs/graph_properties_testdata/merge_without_loops.pbtxt @@ -0,0 +1,330 @@ +node { + name: "Const" + op: "Const" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 7 + } + } + } +} +node { + name: "Const_1" + op: "Const" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 5 + } + } + } +} +node { + name: "ones" + op: "Const" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_FLOAT + tensor_shape { + dim { + size: 1 + } + dim { + size: 1 + } + dim { + size: 1 + } + } + float_val: 1.0 + } + } + } +} +node { + name: "Less" + op: "Less" + input: "Const" + input: "Const_1" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "cond/Switch" + op: "Switch" + input: "Less" + input: "Less" + attr { + key: "T" + value { + type: DT_BOOL + } + } +} +node { + name: "cond/switch_t" + op: "Identity" + input: "cond/Switch:1" + attr { + key: "T" + value { + type: DT_BOOL + } + } +} +node { + name: "cond/switch_f" + op: "Identity" + input: "cond/Switch" + attr { + key: "T" + value { + type: DT_BOOL + } + } +} +node { + name: "cond/pred_id" + op: "Identity" + input: "Less" + attr { + key: "T" + value { + type: DT_BOOL + } + } +} +node { + name: "cond/concat/axis" + op: "Const" + input: "^cond/switch_t" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "cond/concat/Switch" + op: "Switch" + input: "ones" + input: "cond/pred_id" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "_class" + value { + list { + s: "loc:@ones" + } + } + } +} +node { + name: "cond/concat" + op: "ConcatV2" + input: "cond/concat/Switch:1" + input: "cond/concat/Switch:1" + input: "cond/concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +node { + name: "cond/concat_1/axis" + op: "Const" + input: "^cond/switch_f" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 1 + } + } + } +} +node { + name: "cond/concat_1/Switch" + op: "Switch" + input: "ones" + input: "cond/pred_id" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "_class" + value { + list { + s: "loc:@ones" + } + } + } +} +node { + name: "cond/concat_1" + op: "ConcatV2" + input: "cond/concat_1/Switch" + input: "cond/concat_1/Switch" + input: "cond/concat_1/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +node { + name: "cond/Merge" + op: "Merge" + input: "cond/concat" + input: "cond/concat_1" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "concat/axis" + op: "Const" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 2 + } + } + } +} +node { + name: "concat" + op: "ConcatV2" + input: "cond/Merge" + input: "cond/Merge" + input: "concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +versions { + producer: 21 +} diff --git a/tensorflow/core/grappler/costs/graph_properties_testdata/nested_loop.pbtxt b/tensorflow/core/grappler/costs/graph_properties_testdata/nested_loop.pbtxt new file mode 100644 index 00000000000..69f7bef08b6 --- /dev/null +++ b/tensorflow/core/grappler/costs/graph_properties_testdata/nested_loop.pbtxt @@ -0,0 +1,716 @@ +node { + name: "Const" + op: "Const" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "ones" + op: "Const" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_FLOAT + tensor_shape { + dim { + size: 1 + } + dim { + size: 1 + } + dim { + size: 1 + } + } + float_val: 1.0 + } + } + } +} +node { + name: "while/Enter" + op: "Enter" + input: "Const" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/Enter_1" + op: "Enter" + input: "ones" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/Merge" + op: "Merge" + input: "while/Enter" + input: "while/NextIteration" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Merge_1" + op: "Merge" + input: "while/Enter_1" + input: "while/NextIteration_1" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/Less/y" + op: "Const" + input: "^while/Merge" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 3 + } + } + } +} +node { + name: "while/Less" + op: "Less" + input: "while/Merge" + input: "while/Less/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/LoopCond" + op: "LoopCond" + input: "while/Less" +} +node { + name: "while/Switch" + op: "Switch" + input: "while/Merge" + input: "while/LoopCond" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/Merge" + } + } + } +} +node { + name: "while/Switch_1" + op: "Switch" + input: "while/Merge_1" + input: "while/LoopCond" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/Merge_1" + } + } + } +} +node { + name: "while/Identity" + op: "Identity" + input: "while/Switch:1" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Identity_1" + op: "Identity" + input: "while/Switch_1:1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/while/Const" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "while/while/Enter" + op: "Enter" + input: "while/while/Const" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "frame_name" + value { + s: "while/while/while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/while/Enter_1" + op: "Enter" + input: "while/Identity_1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "frame_name" + value { + s: "while/while/while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/while/Merge" + op: "Merge" + input: "while/while/Enter" + input: "while/while/NextIteration" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/Merge_1" + op: "Merge" + input: "while/while/Enter_1" + input: "while/while/NextIteration_1" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/while/Less/y" + op: "Const" + input: "^while/while/Merge" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 3 + } + } + } +} +node { + name: "while/while/Less" + op: "Less" + input: "while/while/Merge" + input: "while/while/Less/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/LoopCond" + op: "LoopCond" + input: "while/while/Less" +} +node { + name: "while/while/Switch" + op: "Switch" + input: "while/while/Merge" + input: "while/while/LoopCond" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/while/Merge" + } + } + } +} +node { + name: "while/while/Switch_1" + op: "Switch" + input: "while/while/Merge_1" + input: "while/while/LoopCond" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/while/Merge_1" + } + } + } +} +node { + name: "while/while/Identity" + op: "Identity" + input: "while/while/Switch:1" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/Identity_1" + op: "Identity" + input: "while/while/Switch_1:1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/while/add/y" + op: "Const" + input: "^while/while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 1 + } + } + } +} +node { + name: "while/while/add" + op: "Add" + input: "while/while/Identity" + input: "while/while/add/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/concat/axis" + op: "Const" + input: "^while/while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 2 + } + } + } +} +node { + name: "while/while/concat" + op: "ConcatV2" + input: "while/while/Identity_1" + input: "while/while/Identity_1" + input: "while/while/concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/NextIteration" + op: "NextIteration" + input: "while/while/add" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/NextIteration_1" + op: "NextIteration" + input: "while/while/concat" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/while/Exit" + op: "Exit" + input: "while/while/Switch" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/while/Exit_1" + op: "Exit" + input: "while/while/Switch_1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/add/y" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 1 + } + } + } +} +node { + name: "while/add" + op: "Add" + input: "while/Identity" + input: "while/add/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/concat/axis" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "while/concat" + op: "ConcatV2" + input: "while/Identity_1" + input: "while/Identity_1" + input: "while/concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +node { + name: "while/NextIteration" + op: "NextIteration" + input: "while/add" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/NextIteration_1" + op: "NextIteration" + input: "while/concat" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/Exit" + op: "Exit" + input: "while/Switch" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Exit_1" + op: "Exit" + input: "while/Switch_1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +versions { + producer: 21 +} diff --git a/tensorflow/core/grappler/costs/graph_properties_testdata/queues_and_loops.pbtxt b/tensorflow/core/grappler/costs/graph_properties_testdata/queues_and_loops.pbtxt new file mode 100644 index 00000000000..b320561f77a --- /dev/null +++ b/tensorflow/core/grappler/costs/graph_properties_testdata/queues_and_loops.pbtxt @@ -0,0 +1,569 @@ +node { + name: "Const" + op: "Const" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "fifo_queue" + op: "FIFOQueueV2" + attr { + key: "capacity" + value { + i: 1 + } + } + attr { + key: "component_types" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "container" + value { + s: "" + } + } + attr { + key: "shapes" + value { + list { + } + } + } + attr { + key: "shared_name" + value { + s: "" + } + } +} +node { + name: "ones" + op: "Const" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_FLOAT + tensor_shape { + dim { + size: 2 + } + dim { + size: 2 + } + } + float_val: 1.0 + } + } + } +} +node { + name: "fifo_queue_enqueue" + op: "QueueEnqueueV2" + input: "fifo_queue" + input: "ones" + attr { + key: "Tcomponents" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "timeout_ms" + value { + i: -1 + } + } +} +node { + name: "fifo_queue_1" + op: "FIFOQueueV2" + attr { + key: "capacity" + value { + i: 1 + } + } + attr { + key: "component_types" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "container" + value { + s: "" + } + } + attr { + key: "shapes" + value { + list { + } + } + } + attr { + key: "shared_name" + value { + s: "" + } + } +} +node { + name: "fifo_queue_Dequeue" + op: "QueueDequeueV2" + input: "fifo_queue" + attr { + key: "component_types" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "timeout_ms" + value { + i: -1 + } + } +} +node { + name: "while/Enter" + op: "Enter" + input: "Const" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/Enter_1" + op: "Enter" + input: "fifo_queue_Dequeue" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/Merge" + op: "Merge" + input: "while/Enter" + input: "while/NextIteration" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Merge_1" + op: "Merge" + input: "while/Enter_1" + input: "while/NextIteration_1" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/Less/y" + op: "Const" + input: "^while/Merge" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 10 + } + } + } +} +node { + name: "while/Less" + op: "Less" + input: "while/Merge" + input: "while/Less/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/LoopCond" + op: "LoopCond" + input: "while/Less" +} +node { + name: "while/Switch" + op: "Switch" + input: "while/Merge" + input: "while/LoopCond" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/Merge" + } + } + } +} +node { + name: "while/Switch_1" + op: "Switch" + input: "while/Merge_1" + input: "while/LoopCond" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/Merge_1" + } + } + } +} +node { + name: "while/Identity" + op: "Identity" + input: "while/Switch:1" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Identity_1" + op: "Identity" + input: "while/Switch_1:1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/add/y" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 1 + } + } + } +} +node { + name: "while/add" + op: "Add" + input: "while/Identity" + input: "while/add/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/concat/axis" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "while/concat" + op: "ConcatV2" + input: "while/Identity_1" + input: "while/Identity_1" + input: "while/concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +node { + name: "while/NextIteration" + op: "NextIteration" + input: "while/add" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/NextIteration_1" + op: "NextIteration" + input: "while/concat" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/Exit" + op: "Exit" + input: "while/Switch" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Exit_1" + op: "Exit" + input: "while/Switch_1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "fifo_queue_1_enqueue" + op: "QueueEnqueueV2" + input: "fifo_queue_1" + input: "while/Exit_1" + attr { + key: "Tcomponents" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "timeout_ms" + value { + i: -1 + } + } +} +node { + name: "fifo_queue_1_Dequeue" + op: "QueueDequeueV2" + input: "fifo_queue_1" + attr { + key: "component_types" + value { + list { + type: DT_FLOAT + } + } + } + attr { + key: "timeout_ms" + value { + i: -1 + } + } +} +node { + name: "concat/axis" + op: "Const" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 1 + } + } + } +} +node { + name: "concat" + op: "ConcatV2" + input: "fifo_queue_1_Dequeue" + input: "fifo_queue_1_Dequeue" + input: "concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +versions { + producer: 21 +} diff --git a/tensorflow/core/grappler/costs/graph_properties_testdata/while_loop.pbtxt b/tensorflow/core/grappler/costs/graph_properties_testdata/while_loop.pbtxt new file mode 100644 index 00000000000..c11833bd1a7 --- /dev/null +++ b/tensorflow/core/grappler/costs/graph_properties_testdata/while_loop.pbtxt @@ -0,0 +1,371 @@ +node { + name: "Const" + op: "Const" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "ones" + op: "Const" + attr { + key: "dtype" + value { + type: DT_FLOAT + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_FLOAT + tensor_shape { + dim { + size: 2 + } + dim { + size: 2 + } + } + float_val: 1.0 + } + } + } +} +node { + name: "while/Enter" + op: "Enter" + input: "Const" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/Enter_1" + op: "Enter" + input: "ones" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "frame_name" + value { + s: "while/while/" + } + } + attr { + key: "is_constant" + value { + b: false + } + } + attr { + key: "parallel_iterations" + value { + i: 10 + } + } +} +node { + name: "while/Merge" + op: "Merge" + input: "while/Enter" + input: "while/NextIteration" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Merge_1" + op: "Merge" + input: "while/Enter_1" + input: "while/NextIteration_1" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/Less/y" + op: "Const" + input: "^while/Merge" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 10 + } + } + } +} +node { + name: "while/Less" + op: "Less" + input: "while/Merge" + input: "while/Less/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/LoopCond" + op: "LoopCond" + input: "while/Less" +} +node { + name: "while/Switch" + op: "Switch" + input: "while/Merge" + input: "while/LoopCond" + attr { + key: "T" + value { + type: DT_INT32 + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/Merge" + } + } + } +} +node { + name: "while/Switch_1" + op: "Switch" + input: "while/Merge_1" + input: "while/LoopCond" + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "_class" + value { + list { + s: "loc:@while/Merge_1" + } + } + } +} +node { + name: "while/Identity" + op: "Identity" + input: "while/Switch:1" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Identity_1" + op: "Identity" + input: "while/Switch_1:1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/add/y" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 1 + } + } + } +} +node { + name: "while/add" + op: "Add" + input: "while/Identity" + input: "while/add/y" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/concat/axis" + op: "Const" + input: "^while/Identity" + attr { + key: "dtype" + value { + type: DT_INT32 + } + } + attr { + key: "value" + value { + tensor { + dtype: DT_INT32 + tensor_shape { + } + int_val: 0 + } + } + } +} +node { + name: "while/concat" + op: "ConcatV2" + input: "while/Identity_1" + input: "while/Identity_1" + input: "while/concat/axis" + attr { + key: "N" + value { + i: 2 + } + } + attr { + key: "T" + value { + type: DT_FLOAT + } + } + attr { + key: "Tidx" + value { + type: DT_INT32 + } + } +} +node { + name: "while/NextIteration" + op: "NextIteration" + input: "while/add" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/NextIteration_1" + op: "NextIteration" + input: "while/concat" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +node { + name: "while/Exit" + op: "Exit" + input: "while/Switch" + attr { + key: "T" + value { + type: DT_INT32 + } + } +} +node { + name: "while/Exit_1" + op: "Exit" + input: "while/Switch_1" + attr { + key: "T" + value { + type: DT_FLOAT + } + } +} +versions { + producer: 21 +} diff --git a/tensorflow/core/grappler/inputs/utils.cc b/tensorflow/core/grappler/inputs/utils.cc index 17f41105b28..5029dff8772 100644 --- a/tensorflow/core/grappler/inputs/utils.cc +++ b/tensorflow/core/grappler/inputs/utils.cc @@ -29,5 +29,19 @@ bool FilesExist(const std::set<string>& files) { return FilesExist(std::vector<string>(files.begin(), files.end()), nullptr); } +bool FileExists(const std::string& file, Status* status) { + *status = Env::Default()->FileExists(file); + return status->ok(); +} + +Status ReadGraphDefFromFile(const std::string& graph_def_pbtxt_path, + GraphDef* result) { + Status status; + if (FileExists(graph_def_pbtxt_path, &status)) { + return ReadTextProto(Env::Default(), graph_def_pbtxt_path, result); + } + return status; +} + } // End namespace grappler } // end namespace tensorflow diff --git a/tensorflow/core/grappler/inputs/utils.h b/tensorflow/core/grappler/inputs/utils.h index ee65ca031d4..00fcfa7a3f4 100644 --- a/tensorflow/core/grappler/inputs/utils.h +++ b/tensorflow/core/grappler/inputs/utils.h @@ -29,6 +29,11 @@ bool FilesExist(const std::vector<string>& files, std::vector<Status>* status = nullptr); bool FilesExist(const std::set<string>& files); +bool FileExists(const std::string& file, Status* status); + +Status ReadGraphDefFromFile(const std::string& graph_def_pbtxt_path, + GraphDef* result); + } // end namespace grappler } // end namespace tensorflow