/* 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 #include #include #include "tensorflow/compiler/xla/array2d.h" #include "tensorflow/compiler/xla/array4d.h" #include "tensorflow/compiler/xla/client/lib/arithmetic.h" #include "tensorflow/compiler/xla/client/local_client.h" #include "tensorflow/compiler/xla/client/xla_builder.h" #include "tensorflow/compiler/xla/literal.h" #include "tensorflow/compiler/xla/reference_util.h" #include "tensorflow/compiler/xla/service/hlo_computation.h" #include "tensorflow/compiler/xla/service/hlo_instruction.h" #include "tensorflow/compiler/xla/service/hlo_module.h" #include "tensorflow/compiler/xla/shape_util.h" #include "tensorflow/compiler/xla/statusor.h" #include "tensorflow/compiler/xla/test.h" #include "tensorflow/compiler/xla/test_helpers.h" #include "tensorflow/compiler/xla/tests/client_library_test_base.h" #include "tensorflow/compiler/xla/tests/hlo_test_base.h" #include "tensorflow/compiler/xla/tests/literal_test_util.h" #include "tensorflow/compiler/xla/tests/test_macros.h" #include "tensorflow/compiler/xla/tests/test_utils.h" #include "tensorflow/compiler/xla/util.h" #include "tensorflow/core/platform/logging.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/platform/types.h" namespace xla { namespace { class Bfloat16Test : public ClientLibraryTestBase { protected: const ErrorSpec error_spec_{0.001, 0.001}; }; XLA_TEST_F(Bfloat16Test, ScalarOperation) { XlaBuilder builder(TestName()); auto x = ConstantR0(&builder, static_cast(2.0f)); auto y = ConstantR0(&builder, static_cast(1.0f)); Add(x, y); ComputeAndCompareR0(&builder, static_cast(3.0f), {}, error_spec_); } XLA_TEST_F(Bfloat16Test, LogOperation) { XlaBuilder builder(TestName()); auto x = ConstantR0(&builder, static_cast(4.0f)); Log(x); ComputeAndCompareR0(&builder, static_cast(1.387f), {}, ErrorSpec(0.01, 0.01)); } XLA_TEST_F(Bfloat16Test, NegateScalarF16) { XlaBuilder builder(TestName()); Neg(ConstantR0(&builder, static_cast(2.1f))); ComputeAndCompareR0(&builder, static_cast(-2.1f), {}, error_spec_); } XLA_TEST_F(Bfloat16Test, BatchNormTraining) { const int kFeatureIndex = 2; XlaBuilder builder(TestName()); auto operand = ConstantR4FromArray4D( &builder, {{{{static_cast(1.f)}, {static_cast(2.f)}}, {{static_cast(3.f)}, {static_cast(4.f)}}}, {{{static_cast(5.f)}, {static_cast(6.f)}}, {{static_cast(7.f)}, {static_cast(8.f)}}}}); auto scale = ConstantR1( &builder, {static_cast(2.0f), static_cast(3.0f)}); auto offset = ConstantR1( &builder, {static_cast(1.0f), static_cast(2.0f)}); BatchNormTraining(operand, scale, offset, /*epsilon=*/0.001, kFeatureIndex); auto expected = LiteralUtil::MakeTupleFromSlices( {LiteralUtil::CreateR4( {{{{static_cast(-1.6875f)}, {static_cast(-2.04f)}}, {{static_cast(0.105f)}, {static_cast(0.66f)}}}, {{{static_cast(1.89f)}, {static_cast(3.35f)}}, {{static_cast(3.7f)}, {static_cast(6.04f)}}}}), LiteralUtil::CreateR1( {static_cast(4), static_cast(5)}), LiteralUtil::CreateR1( {static_cast(5), static_cast(5)})}); ComputeAndCompareTuple(&builder, expected, {}, ErrorSpec(0.01, 0.02)); } XLA_TEST_F(Bfloat16Test, BatchNormGrad) { const int kFeatureIndex = 2; XlaBuilder builder(TestName()); auto operand = ConstantR4FromArray4D( &builder, Array4D(2, 2, 2, 1, static_cast(0.0f))); auto scale = ConstantR1( &builder, {static_cast(1.0f), static_cast(1.0f)}); auto mean = ConstantR1( &builder, {static_cast(0.0f), static_cast(0.0f)}); auto var = ConstantR1( &builder, {static_cast(1.0f), static_cast(1.0f)}); auto grad_output = ConstantR4FromArray4D( &builder, {{{{static_cast(1.f)}, {static_cast(2.f)}}, {{static_cast(3.f)}, {static_cast(4.f)}}}, {{{static_cast(5.f)}, {static_cast(6.f)}}, {{static_cast(7.f)}, {static_cast(8.f)}}}}); BatchNormGrad(operand, scale, mean, var, grad_output, /*epsilon=*/0.0, kFeatureIndex); auto expected = LiteralUtil::MakeTupleFromSlices( {LiteralUtil::CreateR4( {{{{static_cast(-3.f)}, {static_cast(-3.f)}}, {{static_cast(-1.f)}, {static_cast(-1.f)}}}, {{{static_cast(1.f)}, {static_cast(1.f)}}, {{static_cast(3.f)}, {static_cast(3.f)}}}}), LiteralUtil::CreateR1( {static_cast(0), static_cast(0)}), LiteralUtil::CreateR1( {static_cast(16), static_cast(20)})}); ComputeAndCompareTuple(&builder, expected, {}, ErrorSpec(0.01)); } } // namespace } // namespace xla