mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
Change-Id: I693e73d7fcb7c586506d3e102b77b95a0a0d3783 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
29 lines
676 B
C++
29 lines
676 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/os_context.h"
|
|
|
|
namespace OCLRT {
|
|
class Drm;
|
|
|
|
class OsContextLinux : public OsContext {
|
|
public:
|
|
OsContextLinux() = delete;
|
|
~OsContextLinux() override;
|
|
OsContextLinux(Drm &drm, uint32_t contextId, uint32_t deviceBitfield,
|
|
EngineInstanceT engineType, PreemptionMode preemptionMode);
|
|
|
|
unsigned int getEngineFlag() const { return engineFlag; }
|
|
uint32_t getDrmContextId() const { return drmContextId; }
|
|
|
|
protected:
|
|
unsigned int engineFlag = 0;
|
|
uint32_t drmContextId = 0;
|
|
Drm &drm;
|
|
};
|
|
} // namespace OCLRT
|