/* * 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 QueueTypes; template class clRetainReleaseCommandQueueTests : public DeviceHostQueueFixture {}; TYPED_TEST_CASE(clRetainReleaseCommandQueueTests, QueueTypes); TYPED_TEST(clRetainReleaseCommandQueueTests, GivenValidCommandQueueWhenRetainingAndReleasingThenReferenceCountIsUpdatedCorrectly) { if (std::is_same::value && !castToObject(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(static_cast(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