106 lines
3.9 KiB
C++
106 lines
3.9 KiB
C++
/*
|
|
* Copyright (c) 2017, Intel Corporation
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#include "unit_tests/command_queue/enqueue_fixture.h"
|
|
#include "unit_tests/fixtures/hello_world_fixture.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
struct OOQFixtureFactory : public HelloWorldFixtureFactory {
|
|
typedef OOQueueFixture CommandQueueFixture;
|
|
};
|
|
|
|
template <typename TypeParam>
|
|
struct OOQTaskTypedTestsMt : public HelloWorldTest<OOQFixtureFactory> {
|
|
};
|
|
|
|
typedef OOQTaskTypedTestsMt<EnqueueKernelHelper<>> OOQTaskTestsMt;
|
|
|
|
TEST_F(OOQTaskTestsMt, enqueueReadBuffer_blockingAndBlockedOnUserEvent) {
|
|
auto buffer = std::unique_ptr<Buffer>(BufferHelper<>::create());
|
|
|
|
auto alignedReadPtr = alignedMalloc(BufferDefaults::sizeInBytes, MemoryConstants::cacheLineSize);
|
|
ASSERT_NE(nullptr, alignedReadPtr);
|
|
|
|
auto userEvent = clCreateUserEvent(pContext, &retVal);
|
|
EXPECT_EQ(CL_SUCCESS, retVal);
|
|
|
|
auto previousTaskCount = pCmdQ->taskCount;
|
|
auto previousTaskLevel = pCmdQ->taskLevel;
|
|
|
|
std::thread t([=]() {
|
|
Event *ev = castToObject<Event>(userEvent);
|
|
while (ev->peekHasChildEvents() == false) {
|
|
// active wait for VirtualEvent (which is added after queue is blocked)
|
|
}
|
|
auto ret = clSetUserEventStatus(userEvent, CL_COMPLETE);
|
|
ASSERT_EQ(CL_SUCCESS, ret);
|
|
});
|
|
|
|
buffer->forceDisallowCPUCopy = true; // no task level incrasing when cpu copy
|
|
retVal = EnqueueReadBufferHelper<>::enqueueReadBuffer(pCmdQ,
|
|
buffer.get(),
|
|
CL_TRUE,
|
|
0,
|
|
BufferDefaults::sizeInBytes,
|
|
alignedReadPtr,
|
|
1,
|
|
&userEvent,
|
|
nullptr);
|
|
EXPECT_EQ(CL_SUCCESS, retVal);
|
|
|
|
EXPECT_LT(previousTaskCount, pCmdQ->taskCount);
|
|
EXPECT_EQ(previousTaskLevel, pCmdQ->taskLevel);
|
|
|
|
t.join();
|
|
|
|
retVal = clReleaseEvent(userEvent);
|
|
EXPECT_EQ(CL_SUCCESS, retVal);
|
|
|
|
alignedFree(alignedReadPtr);
|
|
}
|
|
|
|
TEST_F(OOQTaskTestsMt, enqueueMarker_blockedOnUserEvent) {
|
|
|
|
auto userEvent = clCreateUserEvent(pContext, &retVal);
|
|
EXPECT_EQ(CL_SUCCESS, retVal);
|
|
|
|
std::thread t([=]() {
|
|
Event *ev = castToObject<Event>(userEvent);
|
|
while (ev->peekHasChildEvents() == false) {
|
|
// active wait for VirtualEvent (which is added after queue is blocked)
|
|
}
|
|
auto ret = clSetUserEventStatus(userEvent, CL_COMPLETE);
|
|
ASSERT_EQ(CL_SUCCESS, ret);
|
|
});
|
|
|
|
retVal = pCmdQ->enqueueMarkerWithWaitList(
|
|
1,
|
|
&userEvent,
|
|
nullptr);
|
|
EXPECT_EQ(CL_SUCCESS, retVal);
|
|
|
|
t.join();
|
|
|
|
retVal = clReleaseEvent(userEvent);
|
|
EXPECT_EQ(CL_SUCCESS, retVal);
|
|
} |