Files
compute-runtime/shared/source/release_helper/release_helper_1261.cpp
Dunajski, Bartosz 342bfcd17c feature: disable dpas on release 12.61
Related-To: NEO-9736

Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
2024-01-03 13:27:41 +01:00

34 lines
719 B
C++

/*
* Copyright (C) 2023-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/release_helper/release_helper.h"
#include "shared/source/release_helper/release_helper_base.inl"
#include "release_definitions.h"
namespace NEO {
constexpr auto release = ReleaseType::release1261;
template <>
bool ReleaseHelperHw<release>::isRcsExposureDisabled() const {
return true;
}
template <>
inline bool ReleaseHelperHw<release>::isDotProductAccumulateSystolicSupported() const {
return false;
}
template <>
inline bool ReleaseHelperHw<release>::isMatrixMultiplyAccumulateSupported() const {
return false;
}
} // namespace NEO
template class NEO::ReleaseHelperHw<NEO::release>;