aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/multi_platform_manager.h
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2018-04-25 09:36:24 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-25 09:39:07 -0700
commit09a39ad1f5d146ea5107cc64dfa0111c1c09424b (patch)
tree51641474eecad9263bf0f80c39f783ee9fbae27e /tensorflow/stream_executor/multi_platform_manager.h
parentd0e81bce1f8a882691083758d2afd1662ad37463 (diff)
Stop using gpu:: as an alias for stream_executor::.
Also do a few related namespace cleanups. PiperOrigin-RevId: 194252437
Diffstat (limited to 'tensorflow/stream_executor/multi_platform_manager.h')
-rw-r--r--tensorflow/stream_executor/multi_platform_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/stream_executor/multi_platform_manager.h b/tensorflow/stream_executor/multi_platform_manager.h
index 672855d5fb..7e316879ca 100644
--- a/tensorflow/stream_executor/multi_platform_manager.h
+++ b/tensorflow/stream_executor/multi_platform_manager.h
@@ -29,7 +29,7 @@ limitations under the License.
// interface. Sample API usage:
//
// port::StatusOr<Platform*> platform_status =
-// gpu::MultiPlatformManager::PlatformWithName("OpenCL");
+// se::MultiPlatformManager::PlatformWithName("OpenCL");
// if (!platform_status.ok()) { ... }
// Platform* platform = platform_status.ValueOrDie();
// LOG(INFO) << platform->VisibleDeviceCount() << " devices visible";