aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/tests/client_library_test_base.cc
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2018-04-17 21:04:35 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-17 21:07:05 -0700
commitd77a621a571d8ab0d69f2682586674e6dff4ec4e (patch)
tree08b29db3c5889725a596b25928aa2ea098be042a /tensorflow/compiler/xla/tests/client_library_test_base.cc
parent41e2cd187b31e9e6d88bc042e21e73f7be0ed729 (diff)
[XLA] Convert XLA to use xla::se as a namespace alias for ::stream_executor.
PiperOrigin-RevId: 193301997
Diffstat (limited to 'tensorflow/compiler/xla/tests/client_library_test_base.cc')
-rw-r--r--tensorflow/compiler/xla/tests/client_library_test_base.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/tensorflow/compiler/xla/tests/client_library_test_base.cc b/tensorflow/compiler/xla/tests/client_library_test_base.cc
index 312d8f284d..69389dae3f 100644
--- a/tensorflow/compiler/xla/tests/client_library_test_base.cc
+++ b/tensorflow/compiler/xla/tests/client_library_test_base.cc
@@ -32,8 +32,6 @@ limitations under the License.
#include "tensorflow/core/platform/logging.h"
#include "tensorflow/core/platform/types.h"
-namespace se = ::perftools::gputools;
-
namespace xla {
namespace {
@@ -59,8 +57,7 @@ se::Platform* GetReferencePlatform() {
} // namespace
ClientLibraryTestBase::ClientLibraryTestBase(
- perftools::gputools::Platform* platform,
- const LocalClientOptions& client_options)
+ se::Platform* platform, const LocalClientOptions& client_options)
: client_(GetOrCreateLocalClientOrDie(client_options)),
execution_options_(CreateDefaultExecutionOptions()) {
CHECK_EQ(platform, client_options.platform());