diff options
| author | Jason Henline <jhen@google.com> | 2016-09-06 19:27:00 +0000 |
|---|---|---|
| committer | Jason Henline <jhen@google.com> | 2016-09-06 19:27:00 +0000 |
| commit | 19eeb37b8c23fb75b7777eb3821fa706b5d0aade (patch) | |
| tree | b7392928d57b07e206439bda892a120a382bfe95 /parallel-libs/streamexecutor/lib/unittests | |
| parent | 405c90e6cc5c8a16b4e9e1e0f302e55ff25190a2 (diff) | |
| download | bcm5719-llvm-19eeb37b8c23fb75b7777eb3821fa706b5d0aade.tar.gz bcm5719-llvm-19eeb37b8c23fb75b7777eb3821fa706b5d0aade.zip | |
[SE] Rename PlatformInterfaces to PlatformDevice
Summary:
The only interface that we ever plan to have in this file is
PlatformDevice, so it makes sense to rename the file to reflect that.
Reviewers: jprice
Subscribers: parallel_libs-commits
Differential Revision: https://reviews.llvm.org/D24269
llvm-svn: 280737
Diffstat (limited to 'parallel-libs/streamexecutor/lib/unittests')
4 files changed, 4 insertions, 4 deletions
diff --git a/parallel-libs/streamexecutor/lib/unittests/DeviceTest.cpp b/parallel-libs/streamexecutor/lib/unittests/DeviceTest.cpp index 593f1d1cd37..08f870d00ba 100644 --- a/parallel-libs/streamexecutor/lib/unittests/DeviceTest.cpp +++ b/parallel-libs/streamexecutor/lib/unittests/DeviceTest.cpp @@ -17,7 +17,7 @@ #include "SimpleHostPlatformDevice.h" #include "streamexecutor/Device.h" -#include "streamexecutor/PlatformInterfaces.h" +#include "streamexecutor/PlatformDevice.h" #include "gtest/gtest.h" diff --git a/parallel-libs/streamexecutor/lib/unittests/PackedKernelArgumentArrayTest.cpp b/parallel-libs/streamexecutor/lib/unittests/PackedKernelArgumentArrayTest.cpp index 3fe25630e8e..dd6d0e1c655 100644 --- a/parallel-libs/streamexecutor/lib/unittests/PackedKernelArgumentArrayTest.cpp +++ b/parallel-libs/streamexecutor/lib/unittests/PackedKernelArgumentArrayTest.cpp @@ -16,7 +16,7 @@ #include "streamexecutor/Device.h" #include "streamexecutor/DeviceMemory.h" #include "streamexecutor/PackedKernelArgumentArray.h" -#include "streamexecutor/PlatformInterfaces.h" +#include "streamexecutor/PlatformDevice.h" #include "llvm/ADT/Twine.h" diff --git a/parallel-libs/streamexecutor/lib/unittests/SimpleHostPlatformDevice.h b/parallel-libs/streamexecutor/lib/unittests/SimpleHostPlatformDevice.h index b54b31dd457..5c5953098c4 100644 --- a/parallel-libs/streamexecutor/lib/unittests/SimpleHostPlatformDevice.h +++ b/parallel-libs/streamexecutor/lib/unittests/SimpleHostPlatformDevice.h @@ -20,7 +20,7 @@ #include <cstdlib> #include <cstring> -#include "streamexecutor/PlatformInterfaces.h" +#include "streamexecutor/PlatformDevice.h" namespace streamexecutor { namespace test { diff --git a/parallel-libs/streamexecutor/lib/unittests/StreamTest.cpp b/parallel-libs/streamexecutor/lib/unittests/StreamTest.cpp index 3a0f4e6fdd2..65598540d67 100644 --- a/parallel-libs/streamexecutor/lib/unittests/StreamTest.cpp +++ b/parallel-libs/streamexecutor/lib/unittests/StreamTest.cpp @@ -18,7 +18,7 @@ #include "streamexecutor/Device.h" #include "streamexecutor/Kernel.h" #include "streamexecutor/KernelSpec.h" -#include "streamexecutor/PlatformInterfaces.h" +#include "streamexecutor/PlatformDevice.h" #include "streamexecutor/Stream.h" #include "gtest/gtest.h" |

