Files
compute-runtime/opencl/test/unit_test/fixtures/platform_fixture.cpp
Mateusz Hoppe 71fb9c176b test: disable context group in ocl ULTs where it is not needed
Related-To: NEO-13789

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2025-01-24 19:59:42 +01:00

44 lines
1.1 KiB
C++

/*
* Copyright (C) 2018-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "opencl/test/unit_test/fixtures/platform_fixture.h"
#include "opencl/source/cl_device/cl_device.h"
#include "opencl/test/unit_test/mocks/mock_platform.h"
#include "gtest/gtest.h"
namespace NEO {
void PlatformFixture::setUp() {
debugManager.flags.ContextGroupSize.set(0);
pPlatform = constructPlatform();
ASSERT_EQ(0u, pPlatform->getNumDevices());
// setup platform / context
bool isInitialized = initPlatform();
ASSERT_EQ(true, isInitialized);
numDevices = static_cast<cl_uint>(pPlatform->getNumDevices());
ASSERT_GT(numDevices, 0u);
auto allDev = pPlatform->getClDevices();
ASSERT_NE(nullptr, allDev);
devices = new cl_device_id[numDevices];
for (cl_uint deviceOrdinal = 0; deviceOrdinal < numDevices; ++deviceOrdinal) {
auto device = allDev[deviceOrdinal];
ASSERT_NE(nullptr, device);
devices[deviceOrdinal] = device;
}
}
void PlatformFixture::tearDown() {
platformsImpl->clear();
delete[] devices;
}
} // namespace NEO