mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Change-Id: Ieaa75aaf4aca4487833754eb38ff709adcbf0f11 Signed-off-by: Piotr Fusik <piotr.fusik@intel.com>
29 lines
703 B
C++
29 lines
703 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/os_context.h"
|
|
|
|
namespace NEO {
|
|
class Drm;
|
|
|
|
class OsContextLinux : public OsContext {
|
|
public:
|
|
OsContextLinux() = delete;
|
|
~OsContextLinux() override;
|
|
OsContextLinux(Drm &drm, uint32_t contextId, DeviceBitfield deviceBitfield,
|
|
aub_stream::EngineType engineType, PreemptionMode preemptionMode, bool lowPriority);
|
|
|
|
unsigned int getEngineFlag() const { return engineFlag; }
|
|
uint32_t getDrmContextId() const { return drmContextId; }
|
|
|
|
protected:
|
|
unsigned int engineFlag = 0;
|
|
uint32_t drmContextId = 0;
|
|
Drm &drm;
|
|
};
|
|
} // namespace NEO
|