/* * Copyright (C) 2019-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/os_interface/hw_info_config.h" namespace NEO { template uint64_t HwInfoConfigHw::getHostMemCapabilitiesValue() { return (UNIFIED_SHARED_MEMORY_ACCESS | UNIFIED_SHARED_MEMORY_ATOMIC_ACCESS); } template uint64_t HwInfoConfigHw::getCrossDeviceSharedMemCapabilities() { return 0; } template void HwInfoConfigHw::enableRenderCompression(HardwareInfo *hwInfo) { hwInfo->capabilityTable.ftrRenderCompressedImages = hwInfo->featureTable.ftrE2ECompression; hwInfo->capabilityTable.ftrRenderCompressedBuffers = hwInfo->featureTable.ftrE2ECompression; } } // namespace NEO