1 /*
2  * Copyright (C) 2020-2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #include "shared/source/helpers/hw_helper.h"
9 
10 namespace NEO {
11 
getCopyEnginesCount(const HardwareInfo & hwInfo)12 uint32_t HwHelper::getCopyEnginesCount(const HardwareInfo &hwInfo) {
13     return hwInfo.capabilityTable.blitterOperationsSupported ? 1 : 0;
14 }
15 
16 } // namespace NEO
17