/* * 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::isRcsExposureDisabled() const { return true; } template <> inline bool ReleaseHelperHw::isDotProductAccumulateSystolicSupported() const { return false; } template <> inline bool ReleaseHelperHw::isMatrixMultiplyAccumulateSupported() const { return false; } } // namespace NEO template class NEO::ReleaseHelperHw;