Files
compute-runtime/shared/source/os_interface/linux/drm_query.cpp
Milczarek, Slawomir 13bc2300e1 Add mock function to check for page fault support
Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
2022-02-28 18:36:31 +01:00

21 lines
301 B
C++

/*
* Copyright (C) 2020-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/os_interface/linux/drm_neo.h"
namespace NEO {
bool Drm::isDebugAttachAvailable() {
return false;
}
bool Drm::hasPageFaultSupport() const {
return false;
}
} // namespace NEO