mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
This change includes: - added corresponding matchers for non-heapless unit tests - added matcher for binding table state - corrected type names for the interface descriptor and compute walker Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
18 lines
489 B
C++
18 lines
489 B
C++
/*
|
|
* Copyright (C) 2019-2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <stdint.h>
|
|
|
|
constexpr bool isSimd1(uint32_t simdSize) {
|
|
return simdSize == 1u;
|
|
}
|
|
template <typename DefaultWalkerType>
|
|
constexpr typename DefaultWalkerType::SIMD_SIZE getSimdConfig(uint32_t simdSize) {
|
|
return static_cast<typename DefaultWalkerType::SIMD_SIZE>(isSimd1(simdSize) ? (32 >> 4) : (simdSize >> 4)); // NOLINT(clang-analyzer-optin.core.EnumCastOutOfRange)
|
|
}
|