From 91fb950c266345ca5b689038adad5e1c31d36b57 Mon Sep 17 00:00:00 2001 From: Sanjoy Das Date: Mon, 7 May 2018 12:48:38 -0700 Subject: Rename HloDotWithContractDimsMatcher to HloDotWithContractingDimsMatcher This is a typo I introduced in cr/195514907. PiperOrigin-RevId: 195706006 --- tensorflow/compiler/xla/service/hlo_matchers.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tensorflow/compiler/xla/service/hlo_matchers.h') diff --git a/tensorflow/compiler/xla/service/hlo_matchers.h b/tensorflow/compiler/xla/service/hlo_matchers.h index 75231beac7..c33bdadf1c 100644 --- a/tensorflow/compiler/xla/service/hlo_matchers.h +++ b/tensorflow/compiler/xla/service/hlo_matchers.h @@ -133,9 +133,9 @@ class HloShardingMatcher // Matches a Dot HLO instruction with specific LHS and RHS contracting // dimensions. -class HloDotWithContractDimsMatcher : public HloMatcher { +class HloDotWithContractingDimsMatcher : public HloMatcher { public: - explicit HloDotWithContractDimsMatcher( + explicit HloDotWithContractingDimsMatcher( ::testing::Matcher lhs, ::testing::Matcher rhs, int64 lhs_contracting_dim, int64 rhs_contracting_dim) @@ -350,7 +350,7 @@ inline ::testing::Matcher Dot( ::testing::Matcher rhs_matcher, int64 lhs_contracting_dim, int64 rhs_contracting_dim) { return ::testing::MakeMatcher( - new ::xla::testing::HloDotWithContractDimsMatcher( + new ::xla::testing::HloDotWithContractingDimsMatcher( lhs_matcher, rhs_matcher, lhs_contracting_dim, rhs_contracting_dim)); } -- cgit v1.2.3