feature: make contextGroupSize dependent on number of processes

Related-To: NEO-12952

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe
2025-01-31 15:26:12 +00:00
committed by Compute-Runtime-Automation
parent 0a068ce96a
commit 6e35d055f2
16 changed files with 182 additions and 15 deletions

View File

@@ -62,6 +62,11 @@ TEST_F(OsInterfaceTest, GivenDefaultOsInterfaceThenLocalMemoryEnabled) {
EXPECT_TRUE(OSInterface::osEnableLocalMemory);
}
TEST(OsInterfaceSimpleTest, GivenOsInterfaceWhenCallingGetAggregatedProcessCountThenCallReturnsZero) {
OSInterface osInterface;
EXPECT_EQ(0u, osInterface.getAggregatedProcessCount());
}
TEST_F(OsInterfaceTest, whenOsInterfaceSetupGmmInputArgsThenArgsAreSet) {
MockExecutionEnvironment executionEnvironment;
auto &rootDeviceEnvironment = *executionEnvironment.rootDeviceEnvironments[0];