ci: infra update

- adjust aub tests

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe
2025-01-28 13:46:18 +00:00
committed by Compute-Runtime-Automation
parent 21021f0340
commit dc20628864
3 changed files with 4 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ components:
branch: master branch: master
dest_dir: infra dest_dir: infra
fetch_tags: true fetch_tags: true
revision: v6658 revision: v6663
type: git type: git
converter: M-3107 converter: M-3107
version: '1' version: '1'

View File

@@ -459,7 +459,7 @@ HWTEST2_P(LargeGrfTest, givenMixedLargeGrfAndSmallGrfKernelsWhenExecutedThenResu
} }
} else { } else {
auto &gfxCoreHelper = executionEnvironment->rootDeviceEnvironments[0]->getHelper<GfxCoreHelper>(); auto &gfxCoreHelper = executionEnvironment->rootDeviceEnvironments[0]->getHelper<GfxCoreHelper>();
if (gfxCoreHelper.areSecondaryContextsSupported() == false) { if (gfxCoreHelper.areSecondaryContextsSupported() == false || device->device.disableSecondaryEngines) {
ASSERT_EQ(1u, largeGrfValues.size()); ASSERT_EQ(1u, largeGrfValues.size());
EXPECT_FALSE(largeGrfValues[0]); EXPECT_FALSE(largeGrfValues[0]);
} else { } else {

View File

@@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2018-2023 Intel Corporation * Copyright (C) 2018-2025 Intel Corporation
* *
* SPDX-License-Identifier: MIT * SPDX-License-Identifier: MIT
* *
@@ -53,6 +53,7 @@ class AUBFixture : public CommandQueueHwFixture {
auto pDevice = MockDevice::create<MockDevice>(executionEnvironment, rootDeviceIndex); auto pDevice = MockDevice::create<MockDevice>(executionEnvironment, rootDeviceIndex);
device = std::make_unique<MockClDevice>(pDevice); device = std::make_unique<MockClDevice>(pDevice);
pDevice->disableSecondaryEngines = true;
this->csr = pDevice->getDefaultEngine().commandStreamReceiver; this->csr = pDevice->getDefaultEngine().commandStreamReceiver;