Files
compute-runtime/level_zero/sysman/source/api/standby/sysman_os_standby.h
Jitendra Sharma 84d44a61f6 refactor: Move sysman_driver/sysman_device files to driver/device directories
Related-To: NEO-9376

Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
2023-10-30 16:05:09 +01:00

32 lines
730 B
C++

/*
* Copyright (C) 2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "level_zero/sysman/source/device/os_sysman.h"
#include <level_zero/zes_api.h>
#include <memory>
namespace L0 {
namespace Sysman {
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 Sysman
} // namespace L0