mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 18:37:46 +08:00
Related-To: NEO-4208 Change-Id: I3a242bfcc149aad01966693f99fbfc51ba71483d Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
79 lines
1.8 KiB
C++
79 lines
1.8 KiB
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/unit_tests/helpers/default_hw_info.h"
|
|
#include "unit_tests/fixtures/platform_fixture.h"
|
|
#include "unit_tests/mocks/mock_platform.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace NEO;
|
|
|
|
struct PlatformTestMt : public ::testing::Test {
|
|
void SetUp() override {
|
|
pPlatform.reset(new MockPlatform);
|
|
|
|
size_t numRootDevices = 0;
|
|
getDevices(numRootDevices, *pPlatform->peekExecutionEnvironment());
|
|
}
|
|
|
|
static void initThreadFunc(Platform *pP) {
|
|
pP->initialize(1, 0);
|
|
}
|
|
|
|
cl_int retVal = CL_SUCCESS;
|
|
std::unique_ptr<Platform> pPlatform;
|
|
};
|
|
|
|
static void callinitPlatform(Platform *plt, bool *ret) {
|
|
*ret = plt->initialize(1, 0);
|
|
}
|
|
|
|
TEST_F(PlatformTestMt, initialize) {
|
|
std::thread threads[10];
|
|
bool ret[10];
|
|
for (int i = 0; i < 10; ++i) {
|
|
threads[i] = std::thread(callinitPlatform, pPlatform.get(), &ret[i]);
|
|
}
|
|
|
|
for (auto &th : threads)
|
|
th.join();
|
|
|
|
for (int i = 0; i < 10; ++i)
|
|
EXPECT_TRUE(ret[i]);
|
|
|
|
EXPECT_TRUE(pPlatform->isInitialized());
|
|
|
|
pPlatform.reset(new MockPlatform());
|
|
size_t numRootDevices = 0;
|
|
getDevices(numRootDevices, *pPlatform->peekExecutionEnvironment());
|
|
|
|
for (int i = 0; i < 10; ++i) {
|
|
threads[i] = std::thread(callinitPlatform, pPlatform.get(), &ret[i]);
|
|
}
|
|
|
|
for (auto &th : threads)
|
|
th.join();
|
|
|
|
for (int i = 0; i < 10; ++i)
|
|
EXPECT_TRUE(ret[i]);
|
|
}
|
|
|
|
TEST_F(PlatformTestMt, mtSafeTest) {
|
|
size_t devNum = pPlatform->getNumDevices();
|
|
EXPECT_EQ(0u, devNum);
|
|
|
|
std::thread t1(PlatformTestMt::initThreadFunc, pPlatform.get());
|
|
std::thread t2(PlatformTestMt::initThreadFunc, pPlatform.get());
|
|
|
|
t1.join();
|
|
t2.join();
|
|
|
|
devNum = pPlatform->getNumDevices();
|
|
EXPECT_EQ(numPlatformDevices, devNum);
|
|
}
|