refactor: Change SLM sizes array length

Related-To: NEO-12747

Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
This commit is contained in:
Chodor, Jaroslaw
2025-01-23 16:47:59 +00:00
committed by Compute-Runtime-Automation
parent 376ac4235e
commit 335aa6e8b9

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2023-2024 Intel Corporation
* Copyright (C) 2023-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -27,7 +27,7 @@ using createReleaseHelperFunctionType = std::unique_ptr<ReleaseHelper> (*)(Hardw
inline createReleaseHelperFunctionType *releaseHelperFactory[maxArchitecture]{};
using ThreadsPerEUConfigs = StackVec<uint32_t, 6>;
using SizeToPreferredSlmValueArray = std::array<SizeToPreferredSlmValue, 12>;
using SizeToPreferredSlmValueArray = std::array<SizeToPreferredSlmValue, 20>;
class ReleaseHelper {
public: