/* Copyright 2016 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include #include #include #include #include "tensorflow/core/common_runtime/graph_runner.h" #include "tensorflow/cc/framework/scope.h" #include "tensorflow/cc/ops/standard_ops.h" #include "tensorflow/core/common_runtime/device_factory.h" #include "tensorflow/core/common_runtime/device_mgr.h" #include "tensorflow/core/framework/function_testlib.h" #include "tensorflow/core/framework/node_def_util.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_shape.h" #include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/graph/node_builder.h" #include "tensorflow/core/graph/testlib.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/lib/core/threadpool.h" #include "tensorflow/core/lib/strings/strcat.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/public/session_options.h" namespace tensorflow { namespace { using test::internal::ExpectEqual; TEST(GraphRunnerTest, SingleConst) { Scope root = Scope::NewRootScope(); auto c = ops::Const(root, 42.0f); GraphRunner graph_runner(Env::Default()); std::vector outputs; Status s = graph_runner.Run(root.graph(), nullptr, {}, {c.name()}, &outputs); TF_ASSERT_OK(s); ExpectEqual(42.0f, outputs[0].scalar()()); } // If not using DeepCopy, and the allocator is deleted with the cpu-device, // this test will seg-fault. TEST(GraphRunnerTest, DeepCopy) { Scope root = Scope::NewRootScope(); auto p1 = ops::Placeholder(root.WithOpName("p1"), DT_FLOAT); auto p2 = ops::Placeholder(root.WithOpName("p2"), DT_FLOAT); auto add = ops::Add(root.WithOpName("add"), p1, p2); Tensor p1_data(DT_FLOAT, TensorShape({})); Tensor p2_data(DT_FLOAT, TensorShape({})); p1_data.scalar()() = 1.0f; p2_data.scalar()() = 2.0f; std::vector> inputs = {{"p1:0", p1_data}, {"p2:0", p2_data}}; // Create and destroy the GraphRunner, and ensure that the outputs are // consumable beyond the lifetime of GraphRunner. std::vector outputs; { GraphRunner graph_runner(Env::Default()); Status s = graph_runner.Run(root.graph(), nullptr, inputs, {"add:0"}, &outputs); TF_ASSERT_OK(s); } ExpectEqual(3.0f, outputs[0].scalar()()); } TEST(GraphRunnerTest, MultiFetchConst) { Scope root = Scope::NewRootScope(); auto c = ops::Const(root, 42.0f); auto pi = ops::Const(root, 3.14f); GraphRunner graph_runner(Env::Default()); std::vector outputs; Status s = graph_runner.Run(root.graph(), nullptr, {}, {c.name(), pi.name()}, &outputs); TF_ASSERT_OK(s); ExpectEqual(42.0f, outputs[0].scalar()()); ExpectEqual(3.14f, outputs[1].scalar()()); } TEST(GraphRunnerTest, FeedAndFetch) { Scope root = Scope::NewRootScope(); auto p1 = ops::Placeholder(root.WithOpName("p1"), DT_FLOAT); auto p2 = ops::Placeholder(root.WithOpName("p2"), DT_FLOAT); auto add = ops::Add(root.WithOpName("add"), p1, p2); Tensor p1_data(DT_FLOAT, TensorShape({})); Tensor p2_data(DT_FLOAT, TensorShape({})); p1_data.scalar()() = 1.0f; p2_data.scalar()() = 2.0f; std::vector> inputs = {{"p1:0", p1_data}, {"p2:0", p2_data}}; GraphRunner graph_runner(Env::Default()); std::vector outputs; Status s = graph_runner.Run(root.graph(), nullptr, inputs, {"add:0"}, &outputs); TF_ASSERT_OK(s); ExpectEqual(3.0f, outputs[0].scalar()()); } } // namespace } // namespace tensorflow