aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor/kernel.h
diff options
context:
space:
mode:
authorGravatar Justin Lebar <jlebar@google.com>2018-04-17 14:26:16 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-17 14:28:51 -0700
commit4764bf2986e2779d5c80b5aca08d72d5c878818b (patch)
tree1f7c389ec28de120568b85670e6d364857c6d7ba /tensorflow/stream_executor/kernel.h
parent72df3d60faa8bbf42bb3f5c7ed38887215fad037 (diff)
[StreamExecutor] Rename ::perftools::gputools -> ::stream_executor, part 1.
Step 1 of re-namespace'ing StreamExecutor into ::stream_executor. This moves everything inside of stream_executor/..., and leaves a namespace alias into ::perftools::gputools. The next steps will clean up users to use the new namespace. This is mostly a mechanical change, but it also includes a bunch of non-mechanical changes that ideally would be split out into separate patches. Unfortunately they all sort of need to be shoved in here for various reasons: - forward declarations need to be in the same namespace as the actual types, so we need to change all forward declarations of StreamExecutor types in this one patch. - Uses of these forward declarations need to be changed to the new namespace (or otherwise we need to add a namespace alias to the relevant header, but this is pretty ugly). - Various initialization code needs to live in StreamExecutor's "real" namespace, so all this needs to be changed. PiperOrigin-RevId: 193256128
Diffstat (limited to 'tensorflow/stream_executor/kernel.h')
-rw-r--r--tensorflow/stream_executor/kernel.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/tensorflow/stream_executor/kernel.h b/tensorflow/stream_executor/kernel.h
index 5358eac1ae..2216884b87 100644
--- a/tensorflow/stream_executor/kernel.h
+++ b/tensorflow/stream_executor/kernel.h
@@ -64,7 +64,7 @@ limitations under the License.
//
// Users typically won't need to type out the TypedKernel signature in full, it
// will be typedef'd by automatically generated code; for example, see
-// perftools::gputools::executor_sample::VecReduceAddKernel.
+// stream_executor::executor_sample::VecReduceAddKernel.
#ifndef TENSORFLOW_STREAM_EXECUTOR_KERNEL_H_
#define TENSORFLOW_STREAM_EXECUTOR_KERNEL_H_
@@ -82,8 +82,7 @@ limitations under the License.
#include "tensorflow/stream_executor/lib/stringpiece.h"
#include "tensorflow/stream_executor/platform/port.h"
-namespace perftools {
-namespace gputools {
+namespace stream_executor {
class DeviceMemoryBase;
template <typename ElemT>
@@ -639,8 +638,8 @@ struct KernelInvocationChecker {
// NOTE: if you encounter an error here, you can see the mismatch by looking
// at the end of the last error message, which will be of the form:
//
- // ...::Compatible<const perftools::gputools::DeviceMemory<OneThing> &,
- // perftools::gputools::DeviceMemory<AnotherThing>, true,
+ // ...::Compatible<const stream_executor::DeviceMemory<OneThing> &,
+ // stream_executor::DeviceMemory<AnotherThing>, true,
// 0>'
// requested here
//
@@ -711,7 +710,6 @@ struct KernelParamsOk<TypedKernel<Params...>, Args...> {
std::tuple<Params...>, std::tuple<Args...>>::CheckAllNoStaticAssert();
};
-} // namespace gputools
-} // namespace perftools
+} // namespace stream_executor
#endif // TENSORFLOW_STREAM_EXECUTOR_KERNEL_H_