Files
compute-runtime/shared/source/os_interface/linux/driver_info_linux.h
Mateusz Jablonski dd1b9d6abc refactor: correct naming of enum class constants 8/n
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2023-12-19 08:18:18 +01:00

26 lines
505 B
C++

/*
* Copyright (C) 2020-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/os_interface/driver_info.h"
namespace NEO {
class DriverInfoLinux : public DriverInfo {
public:
static constexpr DriverInfoType driverInfoType = DriverInfoType::linuxType;
DriverInfoLinux(bool imageSupport, const PhysicalDevicePciBusInfo &pciBusInfo);
bool getMediaSharingSupport() override;
protected:
bool imageSupport = true;
};
} // namespace NEO