mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-10 07:08:04 +08:00
Change-Id: Ia2ba2c5437adeca2c0335f5a2ffd28a6a2881a2a Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com> Related-To: NEO-2942
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/context/context.h"
|
|
#include "unit_tests/fixtures/device_host_queue_fixture.h"
|
|
#include "unit_tests/helpers/unit_test_helper.h"
|
|
|
|
using namespace NEO;
|
|
namespace DeviceHostQueue {
|
|
typedef ::testing::Types<CommandQueue, DeviceQueue> QueueTypes;
|
|
|
|
template <typename T>
|
|
class clRetainReleaseCommandQueueTests : public DeviceHostQueueFixture<T> {};
|
|
|
|
TYPED_TEST_CASE(clRetainReleaseCommandQueueTests, QueueTypes);
|
|
|
|
TYPED_TEST(clRetainReleaseCommandQueueTests, retain_release) {
|
|
if (std::is_same<TypeParam, DeviceQueue>::value && !castToObject<Device>(this->devices[0])->getHardwareInfo().capabilityTable.supportsDeviceEnqueue) {
|
|
return;
|
|
}
|
|
|
|
using BaseType = typename TypeParam::BaseType;
|
|
|
|
auto queue = this->createClQueue();
|
|
ASSERT_EQ(CL_SUCCESS, this->retVal);
|
|
auto qObject = castToObject<TypeParam>(static_cast<BaseType *>(queue));
|
|
ASSERT_NE(qObject, nullptr);
|
|
|
|
cl_uint refCount;
|
|
this->retVal = clGetCommandQueueInfo(queue, CL_QUEUE_REFERENCE_COUNT,
|
|
sizeof(cl_uint), &refCount, NULL);
|
|
EXPECT_EQ(CL_SUCCESS, this->retVal);
|
|
EXPECT_EQ(1u, refCount);
|
|
|
|
this->retVal = clRetainCommandQueue(queue);
|
|
EXPECT_EQ(CL_SUCCESS, this->retVal);
|
|
|
|
this->retVal = clGetCommandQueueInfo(queue, CL_QUEUE_REFERENCE_COUNT,
|
|
sizeof(cl_uint), &refCount, NULL);
|
|
EXPECT_EQ(CL_SUCCESS, this->retVal);
|
|
EXPECT_EQ(2u, refCount);
|
|
|
|
this->retVal = clReleaseCommandQueue(queue);
|
|
EXPECT_EQ(CL_SUCCESS, this->retVal);
|
|
|
|
this->retVal = clGetCommandQueueInfo(queue, CL_QUEUE_REFERENCE_COUNT,
|
|
sizeof(cl_uint), &refCount, NULL);
|
|
EXPECT_EQ(CL_SUCCESS, this->retVal);
|
|
EXPECT_EQ(1u, refCount);
|
|
|
|
this->retVal = clReleaseCommandQueue(queue);
|
|
EXPECT_EQ(CL_SUCCESS, this->retVal);
|
|
}
|
|
} // namespace DeviceHostQueue
|