aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/gpu/gpu_layout_assignment_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/service/gpu/gpu_layout_assignment_test.cc')
-rw-r--r--tensorflow/compiler/xla/service/gpu/gpu_layout_assignment_test.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/tensorflow/compiler/xla/service/gpu/gpu_layout_assignment_test.cc b/tensorflow/compiler/xla/service/gpu/gpu_layout_assignment_test.cc
index e48165c142..95f78ae293 100644
--- a/tensorflow/compiler/xla/service/gpu/gpu_layout_assignment_test.cc
+++ b/tensorflow/compiler/xla/service/gpu/gpu_layout_assignment_test.cc
@@ -132,10 +132,10 @@ TEST_F(LayoutAssignmentTest, BatchNormInference) {
HloInstruction::CreateParameter(4, aux_shape, "variance"));
auto* epsilon = builder.AddInstruction(
- HloInstruction::CreateConstant(Literal::CreateR0<float>(1)));
+ HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(1)));
auto* feature_index =
builder.AddInstruction(HloInstruction::CreateConstant(
- Literal::CreateR0<int64>(kFeatureIndex)));
+ LiteralUtil::CreateR0<int64>(kFeatureIndex)));
auto* batchnorm = builder.AddInstruction(HloInstruction::CreateCustomCall(
shape,
@@ -201,10 +201,10 @@ TEST_F(LayoutAssignmentTest, BatchNormTraining) {
HloInstruction::CreateParameter(2, offset_scale_shape, "offset"));
auto* epsilon = builder.AddInstruction(
- HloInstruction::CreateConstant(Literal::CreateR0<float>(1)));
+ HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(1)));
auto* feature_index =
builder.AddInstruction(HloInstruction::CreateConstant(
- Literal::CreateR0<int64>(kFeatureIndex)));
+ LiteralUtil::CreateR0<int64>(kFeatureIndex)));
auto* batchnorm = builder.AddInstruction(HloInstruction::CreateCustomCall(
batchnorm_shape, {operand, scale, offset, epsilon, feature_index},
@@ -278,10 +278,10 @@ TEST_F(LayoutAssignmentTest, BatchNormGrad) {
HloInstruction::CreateParameter(4, shape, "var"));
auto* epsilon = builder.AddInstruction(
- HloInstruction::CreateConstant(Literal::CreateR0<float>(1)));
+ HloInstruction::CreateConstant(LiteralUtil::CreateR0<float>(1)));
auto* feature_index =
builder.AddInstruction(HloInstruction::CreateConstant(
- Literal::CreateR0<int64>(kFeatureIndex)));
+ LiteralUtil::CreateR0<int64>(kFeatureIndex)));
auto* batchnorm =
builder.AddInstruction(HloInstruction::CreateCustomCall(