aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/multi_platform_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/stream_executor/multi_platform_manager.h')
-rw-r--r--tensorflow/stream_executor/multi_platform_manager.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/tensorflow/stream_executor/multi_platform_manager.h b/tensorflow/stream_executor/multi_platform_manager.h
index 438653ee20..672855d5fb 100644
--- a/tensorflow/stream_executor/multi_platform_manager.h
+++ b/tensorflow/stream_executor/multi_platform_manager.h
@@ -22,8 +22,8 @@ limitations under the License.
// In your BUILD rule, add a dependency on a platform plugin that you'd like
// to use, such as:
//
-// //perftools/gputools/executor/cuda:cuda_platform
-// //perftools/gputools/executor/opencl:opencl_platform
+// //third_party/tensorflow/stream_executor/cuda:cuda_platform
+// //third_party/tensorflow/stream_executor/opencl:opencl_platform
//
// This will register platform plugins that can be discovered via this
// interface. Sample API usage:
@@ -56,10 +56,10 @@ limitations under the License.
// And similarly, for standard interfaces (BLAS, RNG, etc.) you can add
// dependencies on support libraries, e.g.:
//
-// //perftools/gputools/executor/cuda:pluton_blas_plugin
-// //perftools/gputools/executor/cuda:cudnn_plugin
-// //perftools/gputools/executor/cuda:cublas_plugin
-// //perftools/gputools/executor/cuda:curand_plugin
+// //third_party/tensorflow/stream_executor/cuda:pluton_blas_plugin
+// //third_party/tensorflow/stream_executor/cuda:cudnn_plugin
+// //third_party/tensorflow/stream_executor/cuda:cublas_plugin
+// //third_party/tensorflow/stream_executor/cuda:curand_plugin
#ifndef TENSORFLOW_STREAM_EXECUTOR_MULTI_PLATFORM_MANAGER_H_
#define TENSORFLOW_STREAM_EXECUTOR_MULTI_PLATFORM_MANAGER_H_
@@ -75,8 +75,7 @@ limitations under the License.
#include "tensorflow/stream_executor/platform/port.h"
#include "tensorflow/stream_executor/platform/thread_annotations.h"
-namespace perftools {
-namespace gputools {
+namespace stream_executor {
// Manages multiple platforms that may be present on the current machine.
class MultiPlatformManager {
@@ -181,7 +180,6 @@ class MultiPlatformManager {
SE_DISALLOW_COPY_AND_ASSIGN(MultiPlatformManager);
};
-} // namespace gputools
-} // namespace perftools
+} // namespace stream_executor
#endif // TENSORFLOW_STREAM_EXECUTOR_MULTI_PLATFORM_MANAGER_H_