From de3d52e832b4b21a47ca6ef26006a6d6e36e2eed Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 28 Jan 2021 18:47:38 -0800 Subject: [PATCH] Go: Update generated wrapper functions for TensorFlow ops. PiperOrigin-RevId: 354444525 Change-Id: Idfe16a5c950c862ece2f0b58e87c128034d73d89 --- tensorflow/go/op/wrappers.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tensorflow/go/op/wrappers.go b/tensorflow/go/op/wrappers.go index d33da35f358..e8571e88de4 100644 --- a/tensorflow/go/op/wrappers.go +++ b/tensorflow/go/op/wrappers.go @@ -38,21 +38,6 @@ func makeOutputList(op *tf.Operation, start int, output string) ([]tf.Output, in return list, start + size, nil } -// Operator that connects the output of an XLA computation to other consumer graph nodes. -func XlaClusterOutput(scope *Scope, input tf.Output) (outputs tf.Output) { - if scope.Err() != nil { - return - } - opspec := tf.OpSpec{ - Type: "XlaClusterOutput", - Input: []tf.Input{ - input, - }, - } - op := scope.AddOperation(opspec) - return op.Output(0) -} - // An op used by XLA SPMD partitioner to switch from manual partitioning to // // automatic partitioning. It converts the shard-shaped, manually partitioned input