mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Replacing normal pointers by smart pointers in standby module of L0 sysman. Related-To: LOCI-2810 Signed-off-by: Singh, Prasoon <prasoon.singh@intel.com>
30 lines
693 B
C++
30 lines
693 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "level_zero/tools/source/sysman/os_sysman.h"
|
|
#include <level_zero/zes_api.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace L0 {
|
|
|
|
class OsStandby {
|
|
public:
|
|
virtual ze_result_t getMode(zes_standby_promo_mode_t &mode) = 0;
|
|
virtual ze_result_t setMode(zes_standby_promo_mode_t mode) = 0;
|
|
virtual ze_result_t osStandbyGetProperties(zes_standby_properties_t &properties) = 0;
|
|
|
|
virtual bool isStandbySupported(void) = 0;
|
|
|
|
static std::unique_ptr<OsStandby> create(OsSysman *pOsSysman, ze_bool_t onSubdevice, uint32_t subdeviceId);
|
|
virtual ~OsStandby() {}
|
|
};
|
|
|
|
} // namespace L0
|