compute-runtime/unit_tests/scenarios/blocked_enqueue_barrier_sce...

57 lines
1.8 KiB
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "core/unit_tests/utilities/base_object_utils.h"
#include "runtime/event/user_event.h"
#include "runtime/helpers/options.h"
#include "test.h"
#include "unit_tests/fixtures/scenario_test_fixture.h"
#include "unit_tests/mocks/mock_command_queue.h"
#include "unit_tests/mocks/mock_kernel.h"
#include "gtest/gtest.h"
using namespace NEO;
typedef ScenarioTest BarrierScenarioTest;
HWTEST_F(BarrierScenarioTest, givenBlockedEnqueueBarrierOnOOQWhenUserEventIsUnblockedThenNextEnqueuesAreNotBlocked) {
cl_command_queue clCommandQ = nullptr;
cl_queue_properties properties[3] = {CL_QUEUE_PROPERTIES, CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE, 0};
auto mockCmdQ = clUniquePtr(new MockCommandQueueHw<FamilyType>(context, pPlatform->getDevice(0), properties));
clCommandQ = mockCmdQ.get();
cl_kernel clKernel = kernel;
size_t offset[] = {0, 0, 0};
size_t gws[] = {1, 1, 1};
cl_int retVal = CL_SUCCESS;
cl_int success = CL_SUCCESS;
UserEvent *userEvent = new UserEvent(context);
cl_event eventBlocking = userEvent;
retVal = clEnqueueBarrierWithWaitList(clCommandQ, 1, &eventBlocking, nullptr);
EXPECT_EQ(success, retVal);
EXPECT_EQ(Event::eventNotReady, mockCmdQ->taskLevel);
EXPECT_NE(nullptr, mockCmdQ->virtualEvent);
clSetUserEventStatus(eventBlocking, CL_COMPLETE);
userEvent->release();
mockCmdQ->isQueueBlocked();
EXPECT_NE(Event::eventNotReady, mockCmdQ->taskLevel);
EXPECT_EQ(nullptr, mockCmdQ->virtualEvent);
retVal = clEnqueueNDRangeKernel(clCommandQ, clKernel, 1, offset, gws, nullptr, 0, nullptr, nullptr);
EXPECT_EQ(success, retVal);
retVal = clFinish(clCommandQ);
EXPECT_EQ(success, retVal);
}