aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/aot/tests/tfcompile_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/aot/tests/tfcompile_test.cc')
-rw-r--r--tensorflow/compiler/aot/tests/tfcompile_test.cc381
1 files changed, 381 insertions, 0 deletions
diff --git a/tensorflow/compiler/aot/tests/tfcompile_test.cc b/tensorflow/compiler/aot/tests/tfcompile_test.cc
new file mode 100644
index 0000000000..f57d2859df
--- /dev/null
+++ b/tensorflow/compiler/aot/tests/tfcompile_test.cc
@@ -0,0 +1,381 @@
+/* Copyright 2017 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.
+==============================================================================*/
+
+#define EIGEN_USE_THREADS
+#define EIGEN_USE_CUSTOM_THREAD_POOL
+
+#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
+#include "tensorflow/compiler/aot/tests/test_graph_tfadd.h"
+#include "tensorflow/compiler/aot/tests/test_graph_tfadd_with_ckpt.h"
+#include "tensorflow/compiler/aot/tests/test_graph_tfadd_with_ckpt_saver.h"
+#include "tensorflow/compiler/aot/tests/test_graph_tfgather.h"
+#include "tensorflow/compiler/aot/tests/test_graph_tfmatmul.h"
+#include "tensorflow/compiler/aot/tests/test_graph_tfmatmulandadd.h"
+#include "tensorflow/core/platform/test.h"
+
+namespace tensorflow {
+namespace tfcompile {
+namespace {
+
+TEST(TFCompileTest, Add) {
+ AddComp add;
+ EXPECT_EQ(add.arg0_data(), add.args()[0]);
+ EXPECT_EQ(add.arg1_data(), add.args()[1]);
+
+ add.arg0() = 1;
+ add.arg1() = 2;
+ EXPECT_TRUE(add.Run());
+ EXPECT_EQ(add.error_msg(), "");
+ EXPECT_EQ(add.result0(), 3);
+ EXPECT_EQ(add.result0_data()[0], 3);
+ EXPECT_EQ(add.result0_data(), add.results()[0]);
+
+ add.arg0_data()[0] = 123;
+ add.arg1_data()[0] = 456;
+ EXPECT_TRUE(add.Run());
+ EXPECT_EQ(add.error_msg(), "");
+ EXPECT_EQ(add.result0(), 579);
+ EXPECT_EQ(add.result0_data()[0], 579);
+ EXPECT_EQ(add.result0_data(), add.results()[0]);
+
+ const AddComp& add_const = add;
+ EXPECT_EQ(add_const.error_msg(), "");
+ EXPECT_EQ(add_const.arg0(), 123);
+ EXPECT_EQ(add_const.arg0_data()[0], 123);
+ EXPECT_EQ(add_const.arg0_data(), add.args()[0]);
+ EXPECT_EQ(add_const.arg1(), 456);
+ EXPECT_EQ(add_const.arg1_data()[0], 456);
+ EXPECT_EQ(add_const.arg1_data(), add.args()[1]);
+ EXPECT_EQ(add_const.result0(), 579);
+ EXPECT_EQ(add_const.result0_data()[0], 579);
+ EXPECT_EQ(add_const.result0_data(), add_const.results()[0]);
+}
+
+// Run tests that use set_argN_data separately, to avoid accidentally re-using
+// non-existent buffers.
+TEST(TFCompileTest, Add_SetArg) {
+ AddComp add(AddComp::AllocMode::RESULTS_AND_TEMPS_ONLY);
+
+ int32 arg_x = 10;
+ int32 arg_y = 32;
+ add.set_arg0_data(&arg_x);
+ add.set_arg1_data(&arg_y);
+ EXPECT_EQ(add.arg0_data(), add.args()[0]);
+ EXPECT_EQ(add.arg1_data(), add.args()[1]);
+
+ EXPECT_TRUE(add.Run());
+ EXPECT_EQ(add.error_msg(), "");
+ EXPECT_EQ(add.result0(), 42);
+ EXPECT_EQ(add.result0_data()[0], 42);
+ EXPECT_EQ(add.result0_data(), add.results()[0]);
+}
+
+TEST(TFCompileTest, AddWithCkpt) {
+ AddWithCkptComp add;
+ EXPECT_EQ(add.arg0_data(), add.args()[0]);
+
+ add.arg0() = 1;
+ EXPECT_TRUE(add.Run());
+ EXPECT_EQ(add.error_msg(), "");
+ EXPECT_EQ(add.result0(), 43);
+ EXPECT_EQ(add.result0_data()[0], 43);
+ EXPECT_EQ(add.result0_data(), add.results()[0]);
+
+ add.arg0_data()[0] = 111;
+ EXPECT_TRUE(add.Run());
+ EXPECT_EQ(add.error_msg(), "");
+ EXPECT_EQ(add.result0(), 153);
+ EXPECT_EQ(add.result0_data()[0], 153);
+ EXPECT_EQ(add.result0_data(), add.results()[0]);
+
+ const AddWithCkptComp& add_const = add;
+ EXPECT_EQ(add_const.error_msg(), "");
+ EXPECT_EQ(add_const.arg0(), 111);
+ EXPECT_EQ(add_const.arg0_data()[0], 111);
+ EXPECT_EQ(add_const.arg0_data(), add_const.args()[0]);
+ EXPECT_EQ(add_const.result0(), 153);
+ EXPECT_EQ(add_const.result0_data()[0], 153);
+ EXPECT_EQ(add_const.result0_data(), add_const.results()[0]);
+}
+
+TEST(TFCompileTest, AddWithCkptSaver) {
+ AddWithCkptSaverComp add;
+ EXPECT_EQ(add.arg0_data(), add.args()[0]);
+
+ add.arg0() = 1;
+ EXPECT_TRUE(add.Run());
+ EXPECT_EQ(add.error_msg(), "");
+ EXPECT_EQ(add.result0(), 43);
+ EXPECT_EQ(add.result0_data()[0], 43);
+ EXPECT_EQ(add.result0_data(), add.results()[0]);
+
+ add.arg0_data()[0] = 111;
+ EXPECT_TRUE(add.Run());
+ EXPECT_EQ(add.error_msg(), "");
+ EXPECT_EQ(add.result0(), 153);
+ EXPECT_EQ(add.result0_data()[0], 153);
+ EXPECT_EQ(add.result0_data(), add.results()[0]);
+
+ const AddWithCkptSaverComp& add_const = add;
+ EXPECT_EQ(add_const.error_msg(), "");
+ EXPECT_EQ(add_const.arg0(), 111);
+ EXPECT_EQ(add_const.arg0_data()[0], 111);
+ EXPECT_EQ(add_const.arg0_data(), add_const.args()[0]);
+ EXPECT_EQ(add_const.result0(), 153);
+ EXPECT_EQ(add_const.result0_data()[0], 153);
+ EXPECT_EQ(add_const.result0_data(), add_const.results()[0]);
+}
+
+TEST(TFCompileTest, Gather) {
+ GatherComp gather;
+ EXPECT_EQ(gather.arg0_data(), gather.args()[0]);
+ EXPECT_EQ(gather.arg1_data(), gather.args()[1]);
+
+ // Successful gather.
+ {
+ const float params[4] = {1, 2, 3, 4};
+ std::copy(params + 0, params + 4, gather.arg0_data());
+ const int32 indices[2] = {1, 3};
+ std::copy(indices + 0, indices + 2, gather.arg1_data());
+ EXPECT_TRUE(gather.Run());
+ EXPECT_EQ(gather.error_msg(), "");
+ const float results[2] = {2, 4};
+ for (int i = 0; i < 2; ++i) {
+ EXPECT_EQ(gather.result0(i), results[i]);
+ EXPECT_EQ(gather.result0_data()[i], results[i]);
+ }
+ EXPECT_EQ(gather.result0_data(), gather.results()[0]);
+
+ const GatherComp& gather_const = gather;
+ EXPECT_EQ(gather_const.error_msg(), "");
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(gather_const.arg0(i), params[i]);
+ EXPECT_EQ(gather_const.arg0_data()[i], params[i]);
+ }
+ EXPECT_EQ(gather_const.arg0_data(), gather_const.args()[0]);
+ for (int i = 0; i < 2; ++i) {
+ EXPECT_EQ(gather_const.arg1(i), indices[i]);
+ EXPECT_EQ(gather_const.arg1_data()[i], indices[i]);
+ }
+ EXPECT_EQ(gather_const.arg1_data(), gather_const.args()[1]);
+ for (int i = 0; i < 2; ++i) {
+ EXPECT_EQ(gather_const.result0(i), results[i]);
+ EXPECT_EQ(gather_const.result0_data()[i], results[i]);
+ }
+ EXPECT_EQ(gather_const.result0_data(), gather.results()[0]);
+ }
+
+ // Bad indices returns an error.
+ {
+ const float params[4] = {1, 2, 3, 4};
+ std::copy(params + 0, params + 4, gather.arg0_data());
+ const int32 indices[2] = {1, 4};
+ std::copy(indices + 0, indices + 2, gather.arg1_data());
+ EXPECT_FALSE(gather.Run());
+ EXPECT_EQ(gather.error_msg(), "Invalid index for gather");
+ }
+}
+
+TEST(TFCompileTest, MatMul2) {
+ Eigen::ThreadPool tp(2);
+ Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
+
+ foo::bar::MatMulComp matmul;
+ matmul.set_thread_pool(&device);
+ EXPECT_EQ(matmul.arg0_data(), matmul.args()[0]);
+ EXPECT_EQ(matmul.arg1_data(), matmul.args()[1]);
+
+ // Test using the argN() methods.
+ {
+ matmul.arg0(0, 0) = 1;
+ matmul.arg0(0, 1) = 2;
+ matmul.arg0(0, 2) = 3;
+ matmul.arg0(1, 0) = 4;
+ matmul.arg0(1, 1) = 5;
+ matmul.arg0(1, 2) = 6;
+
+ matmul.arg1(0, 0) = 7;
+ matmul.arg1(0, 1) = 8;
+ matmul.arg1(1, 0) = 9;
+ matmul.arg1(1, 1) = 10;
+ matmul.arg1(2, 0) = 11;
+ matmul.arg1(2, 1) = 12;
+
+ EXPECT_TRUE(matmul.Run());
+ EXPECT_EQ(matmul.error_msg(), "");
+ const float results[4] = {58, 64, 139, 154};
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(matmul.result0(i / 2, i % 2), results[i]);
+ EXPECT_EQ(matmul.result0_data()[i], results[i]);
+ }
+ EXPECT_EQ(matmul.result0_data(), matmul.results()[0]);
+ }
+
+ // Test using the argN_data() methods.
+ {
+ const float args[12] = {10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120};
+ std::copy(args + 0, args + 6, matmul.arg0_data());
+ std::copy(args + 6, args + 12, matmul.arg1_data());
+ EXPECT_TRUE(matmul.Run());
+ EXPECT_EQ(matmul.error_msg(), "");
+ const float results[4] = {5800, 6400, 13900, 15400};
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(matmul.result0(i / 2, i % 2), results[i]);
+ EXPECT_EQ(matmul.result0_data()[i], results[i]);
+ }
+ EXPECT_EQ(matmul.result0_data(), matmul.results()[0]);
+
+ const foo::bar::MatMulComp& matmul_const = matmul;
+ EXPECT_EQ(matmul_const.error_msg(), "");
+ for (int i = 0; i < 6; ++i) {
+ EXPECT_EQ(matmul_const.arg0(i / 3, i % 3), args[i]);
+ EXPECT_EQ(matmul_const.arg0_data()[i], args[i]);
+ }
+ EXPECT_EQ(matmul_const.arg0_data(), matmul.args()[0]);
+ for (int i = 0; i < 6; ++i) {
+ EXPECT_EQ(matmul_const.arg1(i / 2, i % 2), args[i + 6]);
+ EXPECT_EQ(matmul_const.arg1_data()[i], args[i + 6]);
+ }
+ EXPECT_EQ(matmul_const.arg1_data(), matmul.args()[1]);
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(matmul_const.result0(i / 2, i % 2), results[i]);
+ EXPECT_EQ(matmul_const.result0_data()[i], results[i]);
+ }
+ EXPECT_EQ(matmul_const.result0_data(), matmul.results()[0]);
+ }
+}
+
+// Run tests that use set_argN_data separately, to avoid accidentally re-using
+// non-existent buffers.
+TEST(TFCompileTest, MatMul2_SetArg) {
+ Eigen::ThreadPool tp(2);
+ Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
+
+ foo::bar::MatMulComp matmul(
+ foo::bar::MatMulComp::AllocMode::RESULTS_AND_TEMPS_ONLY);
+ matmul.set_thread_pool(&device);
+
+ // Test using the set_argN_data() methods.
+ float arg0[2][3] = {{1, 2, 3}, {4, 5, 6}};
+ float arg1[3][2] = {{7, 8}, {9, 10}, {11, 12}};
+ matmul.set_arg0_data(&arg0);
+ matmul.set_arg1_data(&arg1);
+ EXPECT_EQ(matmul.arg0_data(), matmul.args()[0]);
+ EXPECT_EQ(matmul.arg1_data(), matmul.args()[1]);
+
+ EXPECT_TRUE(matmul.Run());
+ EXPECT_EQ(matmul.error_msg(), "");
+ const float results[4] = {58, 64, 139, 154};
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(matmul.result0(i / 2, i % 2), results[i]);
+ EXPECT_EQ(matmul.result0_data()[i], results[i]);
+ }
+ EXPECT_EQ(matmul.result0_data(), matmul.results()[0]);
+}
+
+TEST(TFCompileTest, MatMulAndAdd1) {
+ Eigen::ThreadPool tp(1);
+ Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
+
+ MatMulAndAddComp muladd;
+ muladd.set_thread_pool(&device);
+ EXPECT_EQ(muladd.arg0_data(), muladd.args()[0]);
+ EXPECT_EQ(muladd.arg1_data(), muladd.args()[1]);
+
+ // Test methods with positional args and results.
+ {
+ const float args[8] = {1, 2, 3, 4, 5, 6, 7, 8};
+ std::copy(args + 0, args + 4, muladd.arg0_data());
+ std::copy(args + 4, args + 8, muladd.arg1_data());
+ EXPECT_TRUE(muladd.Run());
+ EXPECT_EQ(muladd.error_msg(), "");
+ const float results0[4] = {19, 22, 43, 50};
+ const float results1[4] = {6, 8, 10, 12};
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(muladd.result0(i / 2, i % 2), results0[i]);
+ EXPECT_EQ(muladd.result0_data()[i], results0[i]);
+ EXPECT_EQ(muladd.result1(i / 2, i % 2), results1[i]);
+ EXPECT_EQ(muladd.result1_data()[i], results1[i]);
+ }
+ EXPECT_EQ(muladd.result0_data(), muladd.results()[0]);
+ EXPECT_EQ(muladd.result1_data(), muladd.results()[1]);
+
+ const MatMulAndAddComp& muladd_const = muladd;
+ EXPECT_EQ(muladd_const.error_msg(), "");
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(muladd_const.arg0(i / 2, i % 2), args[i]);
+ EXPECT_EQ(muladd_const.arg0_data()[i], args[i]);
+ }
+ EXPECT_EQ(muladd_const.arg0_data(), muladd.args()[0]);
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(muladd_const.arg1(i / 2, i % 2), args[i + 4]);
+ EXPECT_EQ(muladd_const.arg1_data()[i], args[i + 4]);
+ }
+ EXPECT_EQ(muladd_const.arg1_data(), muladd.args()[1]);
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(muladd_const.result0(i / 2, i % 2), results0[i]);
+ EXPECT_EQ(muladd_const.result0_data()[i], results0[i]);
+ EXPECT_EQ(muladd_const.result1(i / 2, i % 2), results1[i]);
+ EXPECT_EQ(muladd_const.result1_data()[i], results1[i]);
+ }
+ EXPECT_EQ(muladd_const.result0_data(), muladd.results()[0]);
+ EXPECT_EQ(muladd_const.result1_data(), muladd.results()[1]);
+ }
+
+ // Test methods with named args and results.
+ {
+ const float args[8] = {10, 20, 30, 40, 50, 60, 70, 80};
+ std::copy(args + 0, args + 4, muladd.arg_x_data());
+ std::copy(args + 4, args + 8, muladd.arg_y_data());
+ EXPECT_TRUE(muladd.Run());
+ EXPECT_EQ(muladd.error_msg(), "");
+ const float results0[4] = {1900, 2200, 4300, 5000};
+ const float results1[4] = {60, 80, 100, 120};
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(muladd.result_x_y_prod(i / 2, i % 2), results0[i]);
+ EXPECT_EQ(muladd.result_x_y_prod_data()[i], results0[i]);
+ EXPECT_EQ(muladd.result_x_y_sum(i / 2, i % 2), results1[i]);
+ EXPECT_EQ(muladd.result_x_y_sum_data()[i], results1[i]);
+ }
+ EXPECT_EQ(muladd.result_x_y_prod_data(), muladd.results()[0]);
+ EXPECT_EQ(muladd.result_x_y_sum_data(), muladd.results()[1]);
+
+ // Test const methods.
+ const MatMulAndAddComp& muladd_const = muladd;
+ EXPECT_EQ(muladd_const.error_msg(), "");
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(muladd_const.arg_x(i / 2, i % 2), args[i]);
+ EXPECT_EQ(muladd_const.arg_x_data()[i], args[i]);
+ }
+ EXPECT_EQ(muladd_const.arg_x_data(), muladd.args()[0]);
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(muladd_const.arg_y(i / 2, i % 2), args[i + 4]);
+ EXPECT_EQ(muladd_const.arg_y_data()[i], args[i + 4]);
+ }
+ EXPECT_EQ(muladd_const.arg_y_data(), muladd.args()[1]);
+ for (int i = 0; i < 4; ++i) {
+ EXPECT_EQ(muladd_const.result_x_y_prod(i / 2, i % 2), results0[i]);
+ EXPECT_EQ(muladd_const.result_x_y_prod_data()[i], results0[i]);
+ EXPECT_EQ(muladd_const.result_x_y_sum(i / 2, i % 2), results1[i]);
+ EXPECT_EQ(muladd_const.result_x_y_sum_data()[i], results1[i]);
+ }
+ EXPECT_EQ(muladd_const.result_x_y_prod_data(), muladd.results()[0]);
+ EXPECT_EQ(muladd_const.result_x_y_sum_data(), muladd.results()[1]);
+ }
+}
+
+} // namespace
+} // namespace tfcompile
+} // namespace tensorflow