mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 07:14:10 +08:00
27 lines
600 B
C++
27 lines
600 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/release_helper/release_helper.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <ReleaseType releaseType>
|
|
bool ReleaseHelperHw<releaseType>::isMatrixMultiplyAccumulateSupported() const {
|
|
return true;
|
|
}
|
|
template <ReleaseType releaseType>
|
|
bool ReleaseHelperHw<releaseType>::isAdjustWalkOrderAvailable() const {
|
|
return false;
|
|
}
|
|
|
|
template <ReleaseType releaseType>
|
|
bool ReleaseHelperHw<releaseType>::isPipeControlPriorToNonPipelinedStateCommandsWARequired() const {
|
|
return false;
|
|
}
|
|
|
|
} // namespace NEO
|