/* * Copyright (C) 2019-2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/os_interface/hw_info_config.h" namespace NEO { template uint64_t HwInfoConfigHw::getHostMemCapabilities() { return (UNIFIED_SHARED_MEMORY_ACCESS | UNIFIED_SHARED_MEMORY_ATOMIC_ACCESS); } template uint64_t HwInfoConfigHw::getDeviceMemCapabilities() { return (UNIFIED_SHARED_MEMORY_ACCESS | UNIFIED_SHARED_MEMORY_ATOMIC_ACCESS); } template uint64_t HwInfoConfigHw::getSingleDeviceSharedMemCapabilities() { return (UNIFIED_SHARED_MEMORY_ACCESS | UNIFIED_SHARED_MEMORY_ATOMIC_ACCESS); } template uint64_t HwInfoConfigHw::getCrossDeviceSharedMemCapabilities() { return 0; } template uint64_t HwInfoConfigHw::getSharedSystemMemCapabilities() { return 0; } } // namespace NEO