aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/cpu/cpu_hlo_support_checker_test.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-01-08 17:36:56 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-08 17:40:55 -0800
commit6fda97ab7540fb003d46f7c9810d6aab6dbc6c19 (patch)
treee892e09a5717aeddcebfb617c4e45459054f2cba /tensorflow/compiler/xla/service/cpu/cpu_hlo_support_checker_test.cc
parent91332633c2703727f3e776efbb4eba567cef6de1 (diff)
[XLA] Initial sparse layout support
Adds SparseIndexArray and support methods to Literal. SparseIndexArray manages the array of sparse indices and is exposed by sparse Literals. Also adds HloSupportChecker classes for CPU and GPU. This will be run as the first HloPass during compilation, and verifies that the graph is supported by the backend. Currently only verifies shapes, and that the layout is not sparse since no backend supports sparse layouts yet. PiperOrigin-RevId: 181244401
Diffstat (limited to 'tensorflow/compiler/xla/service/cpu/cpu_hlo_support_checker_test.cc')
-rw-r--r--tensorflow/compiler/xla/service/cpu/cpu_hlo_support_checker_test.cc72
1 files changed, 72 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/cpu/cpu_hlo_support_checker_test.cc b/tensorflow/compiler/xla/service/cpu/cpu_hlo_support_checker_test.cc
new file mode 100644
index 0000000000..0f463e6de6
--- /dev/null
+++ b/tensorflow/compiler/xla/service/cpu/cpu_hlo_support_checker_test.cc
@@ -0,0 +1,72 @@
+/* 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.
+==============================================================================*/
+
+#include "tensorflow/compiler/xla/service/cpu/cpu_hlo_support_checker.h"
+#include "tensorflow/compiler/xla/shape_util.h"
+#include "tensorflow/compiler/xla/test.h"
+#include "tensorflow/compiler/xla/tests/hlo_test_base.h"
+#include "tensorflow/core/lib/core/error_codes.pb.h"
+#include "tensorflow/core/lib/core/status_test_util.h"
+
+namespace xla {
+namespace {
+
+using ::testing::HasSubstr;
+
+class CpuHloSupportCheckerTest : public HloTestBase {
+ protected:
+ CpuHloSupportChecker& checker() { return checker_; }
+
+ private:
+ CpuHloSupportChecker checker_;
+};
+
+TEST_F(CpuHloSupportCheckerTest, Add) {
+ HloComputation::Builder builder(TestName());
+ const Shape scalar_shape = ShapeUtil::MakeShape(F32, {});
+ HloInstruction* param0 = builder.AddInstruction(
+ HloInstruction::CreateParameter(0, scalar_shape, "param0"));
+ HloInstruction* param1 = builder.AddInstruction(
+ HloInstruction::CreateParameter(1, scalar_shape, "param1"));
+ builder.AddInstruction(HloInstruction::CreateBinary(
+ scalar_shape, HloOpcode::kAdd, param0, param1));
+ auto module = CreateNewModule();
+ module->AddEntryComputation(builder.Build());
+
+ TF_ASSERT_OK(checker().Run(module.get()).status());
+}
+
+TEST_F(CpuHloSupportCheckerTest, SparseUnimplemented) {
+ HloComputation::Builder builder(TestName());
+ const Shape sparse_shape = ShapeUtil::MakeShapeWithSparseLayout(F32, {10}, 2);
+ HloInstruction* param0 = builder.AddInstruction(
+ HloInstruction::CreateParameter(0, sparse_shape, "param0"));
+ HloInstruction* param1 = builder.AddInstruction(
+ HloInstruction::CreateParameter(1, sparse_shape, "param1"));
+ builder.AddInstruction(HloInstruction::CreateBinary(
+ sparse_shape, HloOpcode::kAdd, param0, param1));
+ auto module = CreateNewModule();
+ module->AddEntryComputation(builder.Build());
+
+ Status status = checker().Run(module.get()).status();
+ ASSERT_EQ(status.code(), tensorflow::error::UNIMPLEMENTED);
+ EXPECT_THAT(status.error_message(),
+ HasSubstr("CPU backend does not support"));
+ EXPECT_THAT(status.error_message(),
+ HasSubstr(ShapeUtil::HumanStringWithLayout(sparse_shape)));
+}
+
+} // namespace
+} // namespace xla