Revert "ocl(feature): dg2, enable buffer pool allocator"

This reverts commit 20ccf3063b.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation 2023-01-02 12:46:49 +01:00 committed by Compute-Runtime-Automation
parent 18eb3c27c8
commit 6d2c6df994
3 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2022 Intel Corporation * Copyright (C) 2022-2023 Intel Corporation
* *
* SPDX-License-Identifier: MIT * SPDX-License-Identifier: MIT
* *
@ -36,7 +36,7 @@ DG2TEST_F(AggregatedSmallBuffersDg2DefaultTest, givenDifferentFlagValuesAndSingl
// Single device context // Single device context
{ {
DebugManager.flags.ExperimentalSmallBufferPoolAllocator.set(-1); DebugManager.flags.ExperimentalSmallBufferPoolAllocator.set(-1);
EXPECT_TRUE(pContext->getBufferPoolAllocator().isAggregatedSmallBuffersEnabled(pContext)); EXPECT_FALSE(pContext->getBufferPoolAllocator().isAggregatedSmallBuffersEnabled(pContext));
} }
{ {
DebugManager.flags.ExperimentalSmallBufferPoolAllocator.set(0); DebugManager.flags.ExperimentalSmallBufferPoolAllocator.set(0);

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2021-2022 Intel Corporation * Copyright (C) 2021-2023 Intel Corporation
* *
* SPDX-License-Identifier: MIT * SPDX-License-Identifier: MIT
* *
@ -218,7 +218,7 @@ bool ProductHelperHw<gfxProduct>::isResolveDependenciesByPipeControlsSupported(c
template <> template <>
bool ProductHelperHw<gfxProduct>::isBufferPoolAllocatorSupported() const { bool ProductHelperHw<gfxProduct>::isBufferPoolAllocatorSupported() const {
return true; return false;
} }
template <> template <>

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2021-2022 Intel Corporation * Copyright (C) 2021-2023 Intel Corporation
* *
* SPDX-License-Identifier: MIT * SPDX-License-Identifier: MIT
* *
@ -572,5 +572,5 @@ DG2TEST_F(ProductHelperTestDg2, givenDebugFlagWhenCheckingIsResolveDependenciesB
DG2TEST_F(ProductHelperTestDg2, givenProductHelperWhenCheckingIsBufferPoolAllocatorSupportedThenCorrectValueIsReturned) { DG2TEST_F(ProductHelperTestDg2, givenProductHelperWhenCheckingIsBufferPoolAllocatorSupportedThenCorrectValueIsReturned) {
auto productHelper = ProductHelper::get(defaultHwInfo->platform.eProductFamily); auto productHelper = ProductHelper::get(defaultHwInfo->platform.eProductFamily);
EXPECT_TRUE(productHelper->isBufferPoolAllocatorSupported()); EXPECT_FALSE(productHelper->isBufferPoolAllocatorSupported());
} }