/* * 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; } } // namespace NEO