summaryrefslogtreecommitdiffstats
path: root/parallel-libs/streamexecutor/lib/Kernel.cpp
diff options
context:
space:
mode:
authorJason Henline <jhen@google.com>2016-08-16 18:18:32 +0000
committerJason Henline <jhen@google.com>2016-08-16 18:18:32 +0000
commita91dc70b18dd129761b66c1b76cbe64f54cd2eb1 (patch)
treedcf6d82e7fe839a990e720b231193ee7fc71066f /parallel-libs/streamexecutor/lib/Kernel.cpp
parent1d01a793042d3d0566b009915529ab4559ea72a9 (diff)
downloadbcm5719-llvm-a91dc70b18dd129761b66c1b76cbe64f54cd2eb1.tar.gz
bcm5719-llvm-a91dc70b18dd129761b66c1b76cbe64f54cd2eb1.zip
[StreamExecutor] Rename StreamExecutor to Executor
Summary: No functional changes just renaming this class for better readability. Reviewers: jlebar Subscribers: jprice, parallel_libs-commits Differential Revision: https://reviews.llvm.org/D23574 llvm-svn: 278833
Diffstat (limited to 'parallel-libs/streamexecutor/lib/Kernel.cpp')
-rw-r--r--parallel-libs/streamexecutor/lib/Kernel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/parallel-libs/streamexecutor/lib/Kernel.cpp b/parallel-libs/streamexecutor/lib/Kernel.cpp
index 3c3ec20674f..9e99e91ef91 100644
--- a/parallel-libs/streamexecutor/lib/Kernel.cpp
+++ b/parallel-libs/streamexecutor/lib/Kernel.cpp
@@ -13,14 +13,14 @@
//===----------------------------------------------------------------------===//
#include "streamexecutor/Kernel.h"
+#include "streamexecutor/Executor.h"
#include "streamexecutor/PlatformInterfaces.h"
-#include "streamexecutor/StreamExecutor.h"
#include "llvm/DebugInfo/Symbolize/Symbolize.h"
namespace streamexecutor {
-KernelBase::KernelBase(StreamExecutor *ParentExecutor, const std::string &Name,
+KernelBase::KernelBase(Executor *ParentExecutor, const std::string &Name,
const std::string &DemangledName,
std::unique_ptr<KernelInterface> Implementation)
: ParentExecutor(ParentExecutor), Name(Name), DemangledName(DemangledName),
@@ -28,7 +28,7 @@ KernelBase::KernelBase(StreamExecutor *ParentExecutor, const std::string &Name,
KernelBase::~KernelBase() = default;
-Expected<KernelBase> KernelBase::create(StreamExecutor *ParentExecutor,
+Expected<KernelBase> KernelBase::create(Executor *ParentExecutor,
const MultiKernelLoaderSpec &Spec) {
auto MaybeImplementation = ParentExecutor->getKernelImplementation(Spec);
if (!MaybeImplementation) {
OpenPOWER on IntegriCloud