2023-04-13 14:16:49 +00:00
|
|
|
/*
|
2024-01-25 17:07:26 +00:00
|
|
|
* Copyright (C) 2023-2024 Intel Corporation
|
2023-04-13 14:16:49 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-09-11 09:05:49 +00:00
|
|
|
#include "shared/source/memory_manager/allocation_type.h"
|
2023-04-13 14:16:49 +00:00
|
|
|
#include "shared/source/release_helper/release_helper.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
bool ReleaseHelperHw<release>::isMatrixMultiplyAccumulateSupported() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-09-20 13:08:46 +00:00
|
|
|
template <>
|
|
|
|
bool ReleaseHelperHw<release>::isDirectSubmissionSupported() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-04-13 14:16:49 +00:00
|
|
|
} // namespace NEO
|