aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/call_inliner.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/service/call_inliner.cc')
-rw-r--r--tensorflow/compiler/xla/service/call_inliner.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/call_inliner.cc b/tensorflow/compiler/xla/service/call_inliner.cc
index 482ccc5b67..256d05a73e 100644
--- a/tensorflow/compiler/xla/service/call_inliner.cc
+++ b/tensorflow/compiler/xla/service/call_inliner.cc
@@ -18,6 +18,7 @@ limitations under the License.
#include <deque>
#include "tensorflow/compiler/xla/service/call_graph.h"
+#include "tensorflow/compiler/xla/service/hlo_dce.h"
#include "tensorflow/core/lib/core/errors.h"
namespace xla {
@@ -151,6 +152,14 @@ StatusOr<bool> CallInliner::Run(HloModule* module) {
}
return Status::OK();
}));
+ if (did_mutate) {
+ // Run DCE to remove called computations which are now becoming unused.
+ // This can result then in problems if within the called computation, there
+ // were send/recv instructions, which the module group verifier will flag as
+ // error findingthe same channel ID used for multiple send/recv
+ // instructions.
+ TF_RETURN_IF_ERROR(HloDCE().Run(module).status());
+ }
return did_mutate;
}