mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
Change-Id: I6f36b9faa21e05a6954de0b50ea01240539441d1 Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
24 lines
492 B
C++
24 lines
492 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <level_zero/zet_api.h>
|
|
|
|
namespace L0 {
|
|
|
|
class GlobalOperations {
|
|
public:
|
|
virtual ~GlobalOperations(){};
|
|
virtual ze_result_t deviceGetProperties(zet_sysman_properties_t *pProperties) = 0;
|
|
virtual ze_result_t reset() = 0;
|
|
virtual ze_result_t processesGetState(uint32_t *pCount, zet_process_state_t *pProcesses) = 0;
|
|
|
|
virtual void init() = 0;
|
|
};
|
|
|
|
} // namespace L0
|