diff options
Diffstat (limited to 'parallel-libs/streamexecutor/lib')
-rw-r--r-- | parallel-libs/streamexecutor/lib/CMakeLists.txt | 2 | ||||
-rw-r--r-- | parallel-libs/streamexecutor/lib/Device.cpp | 2 | ||||
-rw-r--r-- | parallel-libs/streamexecutor/lib/Kernel.cpp | 2 | ||||
-rw-r--r-- | parallel-libs/streamexecutor/lib/PlatformDevice.cpp (renamed from parallel-libs/streamexecutor/lib/PlatformInterfaces.cpp) | 6 | ||||
-rw-r--r-- | parallel-libs/streamexecutor/lib/unittests/DeviceTest.cpp | 2 | ||||
-rw-r--r-- | parallel-libs/streamexecutor/lib/unittests/PackedKernelArgumentArrayTest.cpp | 2 | ||||
-rw-r--r-- | parallel-libs/streamexecutor/lib/unittests/SimpleHostPlatformDevice.h | 2 | ||||
-rw-r--r-- | parallel-libs/streamexecutor/lib/unittests/StreamTest.cpp | 2 |
8 files changed, 10 insertions, 10 deletions
diff --git a/parallel-libs/streamexecutor/lib/CMakeLists.txt b/parallel-libs/streamexecutor/lib/CMakeLists.txt index 79ae5c748b0..8c3ac025168 100644 --- a/parallel-libs/streamexecutor/lib/CMakeLists.txt +++ b/parallel-libs/streamexecutor/lib/CMakeLists.txt @@ -12,7 +12,7 @@ add_library( KernelSpec.cpp PackedKernelArgumentArray.cpp Platform.cpp - PlatformInterfaces.cpp + PlatformDevice.cpp PlatformManager.cpp Stream.cpp) target_link_libraries(streamexecutor ${llvm_libs}) diff --git a/parallel-libs/streamexecutor/lib/Device.cpp b/parallel-libs/streamexecutor/lib/Device.cpp index 0d81fb78e2d..260c1ba17cd 100644 --- a/parallel-libs/streamexecutor/lib/Device.cpp +++ b/parallel-libs/streamexecutor/lib/Device.cpp @@ -16,7 +16,7 @@ #include <cassert> -#include "streamexecutor/PlatformInterfaces.h" +#include "streamexecutor/PlatformDevice.h" #include "streamexecutor/Stream.h" #include "llvm/ADT/STLExtras.h" diff --git a/parallel-libs/streamexecutor/lib/Kernel.cpp b/parallel-libs/streamexecutor/lib/Kernel.cpp index 61305372f18..55a83514f48 100644 --- a/parallel-libs/streamexecutor/lib/Kernel.cpp +++ b/parallel-libs/streamexecutor/lib/Kernel.cpp @@ -16,7 +16,7 @@ #include "streamexecutor/Device.h" #include "streamexecutor/Kernel.h" -#include "streamexecutor/PlatformInterfaces.h" +#include "streamexecutor/PlatformDevice.h" #include "llvm/DebugInfo/Symbolize/Symbolize.h" diff --git a/parallel-libs/streamexecutor/lib/PlatformInterfaces.cpp b/parallel-libs/streamexecutor/lib/PlatformDevice.cpp index e9378b519df..8dd44a3a4aa 100644 --- a/parallel-libs/streamexecutor/lib/PlatformInterfaces.cpp +++ b/parallel-libs/streamexecutor/lib/PlatformDevice.cpp @@ -1,4 +1,4 @@ -//===-- PlatformInterfaces.cpp - Platform interface implementations -------===// +//===-- PlatformDevice.cpp - Platform interface implementations -----------===// // // The LLVM Compiler Infrastructure // @@ -8,11 +8,11 @@ //===----------------------------------------------------------------------===// /// /// \file -/// Implementation file for PlatformInterfaces.h. +/// Implementation file for PlatformDevice.h. /// //===----------------------------------------------------------------------===// -#include "streamexecutor/PlatformInterfaces.h" +#include "streamexecutor/PlatformDevice.h" namespace streamexecutor { 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" |