1 /* Copyright 2015 The TensorFlow Authors. All Rights Reserved. 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14 ==============================================================================*/ 15 16 #ifndef TENSORFLOW_PLATFORM_STREAM_EXECUTOR_H_ 17 #define TENSORFLOW_PLATFORM_STREAM_EXECUTOR_H_ 18 19 #include "tensorflow/core/platform/platform.h" 20 21 #include "tensorflow/stream_executor/cuda/cuda_platform_id.h" 22 #include "tensorflow/stream_executor/device_memory.h" 23 #include "tensorflow/stream_executor/dnn.h" 24 #include "tensorflow/stream_executor/event.h" 25 #include "tensorflow/stream_executor/host/host_platform_id.h" 26 #include "tensorflow/stream_executor/lib/status.h" 27 #include "tensorflow/stream_executor/multi_platform_manager.h" 28 #include "tensorflow/stream_executor/platform.h" 29 #include "tensorflow/stream_executor/platform/dso_loader.h" 30 #include "tensorflow/stream_executor/rocm/rocm_platform_id.h" 31 #include "tensorflow/stream_executor/scratch_allocator.h" 32 #include "tensorflow/stream_executor/stream.h" 33 #include "tensorflow/stream_executor/stream_executor.h" 34 35 namespace perftools { 36 namespace gputools { 37 38 // Temporarily pull stream_executor into perftools::gputools while we migrate 39 // code to the new namespace. TODO(jlebar): Remove this once we've completed 40 // the migration. 41 using namespace stream_executor; // NOLINT[build/namespaces] 42 43 } // namespace gputools 44 } // namespace perftools 45 46 #endif // TENSORFLOW_PLATFORM_STREAM_EXECUTOR_H_ 47