summaryrefslogtreecommitdiff
path: root/parallel-libs
diff options
context:
space:
mode:
authorJason Henline <jhen@google.com>2016-08-24 19:42:03 +0000
committerJason Henline <jhen@google.com>2016-08-24 19:42:03 +0000
commit1b3bc49641680cb26576857607ad221593819e00 (patch)
tree3fe1a87055cf33457fdea5077bc6959716589a0b /parallel-libs
parent2967ab9beeb696586a5a9f8918d39d41e35848fc (diff)
[StreamExecutor] Fix allocateDeviceMemory
Summary: The return value from PlatformExecutor::allocateDeviceMemory needs to be converted from Expected<GlobalDeviceMemoryBase> to Expected<GlobalDeviceMemory<T>> in Executor::allocateDeviceMemory. A similar bug is also fixed for Executor::allocateHostMemory. Thanks to jprice for identifying this bug. Reviewers: jprice, jlebar Subscribers: parallel_libs-commits Differential Revision: https://reviews.llvm.org/D23849
Diffstat (limited to 'parallel-libs')
-rw-r--r--parallel-libs/streamexecutor/include/streamexecutor/Executor.h12
-rw-r--r--parallel-libs/streamexecutor/lib/unittests/ExecutorTest.cpp27
2 files changed, 37 insertions, 2 deletions
diff --git a/parallel-libs/streamexecutor/include/streamexecutor/Executor.h b/parallel-libs/streamexecutor/include/streamexecutor/Executor.h
index 1e2f3952b79..6b0bc185d90 100644
--- a/parallel-libs/streamexecutor/include/streamexecutor/Executor.h
+++ b/parallel-libs/streamexecutor/include/streamexecutor/Executor.h
@@ -41,7 +41,11 @@ public:
/// Allocates an array of ElementCount entries of type T in device memory.
template <typename T>
Expected<GlobalDeviceMemory<T>> allocateDeviceMemory(size_t ElementCount) {
- return PExecutor->allocateDeviceMemory(ElementCount * sizeof(T));
+ Expected<GlobalDeviceMemoryBase> MaybeBase =
+ PExecutor->allocateDeviceMemory(ElementCount * sizeof(T));
+ if (!MaybeBase)
+ return MaybeBase.takeError();
+ return GlobalDeviceMemory<T>(*MaybeBase);
}
/// Frees memory previously allocated with allocateDeviceMemory.
@@ -54,7 +58,11 @@ public:
/// Host memory allocated by this function can be used for asynchronous memory
/// copies on streams. See Stream::thenCopyD2H and Stream::thenCopyH2D.
template <typename T> Expected<T *> allocateHostMemory(size_t ElementCount) {
- return PExecutor->allocateHostMemory(ElementCount * sizeof(T));
+ Expected<void *> MaybeMemory =
+ PExecutor->allocateHostMemory(ElementCount * sizeof(T));
+ if (!MaybeMemory)
+ return MaybeMemory.takeError();
+ return static_cast<T *>(*MaybeMemory);
}
/// Frees memory previously allocated with allocateHostMemory.
diff --git a/parallel-libs/streamexecutor/lib/unittests/ExecutorTest.cpp b/parallel-libs/streamexecutor/lib/unittests/ExecutorTest.cpp
index d2d03fb6c88..b6719d303ec 100644
--- a/parallel-libs/streamexecutor/lib/unittests/ExecutorTest.cpp
+++ b/parallel-libs/streamexecutor/lib/unittests/ExecutorTest.cpp
@@ -54,6 +54,14 @@ public:
return se::Error::success();
}
+ se::Error registerHostMemory(void *, size_t) override {
+ return se::Error::success();
+ }
+
+ se::Error unregisterHostMemory(void *) override {
+ return se::Error::success();
+ }
+
se::Error synchronousCopyD2H(const se::GlobalDeviceMemoryBase &DeviceSrc,
size_t SrcByteOffset, void *HostDst,
size_t DstByteOffset,
@@ -131,6 +139,25 @@ public:
using llvm::ArrayRef;
using llvm::MutableArrayRef;
+TEST_F(ExecutorTest, AllocateAndFreeDeviceMemory) {
+ se::Expected<se::GlobalDeviceMemory<int>> MaybeMemory =
+ Executor.allocateDeviceMemory<int>(10);
+ EXPECT_TRUE(static_cast<bool>(MaybeMemory));
+ EXPECT_NO_ERROR(Executor.freeDeviceMemory(*MaybeMemory));
+}
+
+TEST_F(ExecutorTest, AllocateAndFreeHostMemory) {
+ se::Expected<int *> MaybeMemory = Executor.allocateHostMemory<int>(10);
+ EXPECT_TRUE(static_cast<bool>(MaybeMemory));
+ EXPECT_NO_ERROR(Executor.freeHostMemory(*MaybeMemory));
+}
+
+TEST_F(ExecutorTest, RegisterAndUnregisterHostMemory) {
+ std::vector<int> Data(10);
+ EXPECT_NO_ERROR(Executor.registerHostMemory(Data.data(), 10));
+ EXPECT_NO_ERROR(Executor.unregisterHostMemory(Data.data()));
+}
+
// D2H tests
TEST_F(ExecutorTest, SyncCopyD2HToMutableArrayRefByCount) {