mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
27 lines
636 B
C++
27 lines
636 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <level_zero/zes_api.h>
|
|
|
|
namespace L0 {
|
|
namespace Sysman {
|
|
|
|
class Ecc {
|
|
public:
|
|
virtual ~Ecc() = default;
|
|
virtual ze_result_t deviceEccAvailable(ze_bool_t *pAvailable) = 0;
|
|
virtual ze_result_t deviceEccConfigurable(ze_bool_t *pConfigurable) = 0;
|
|
virtual ze_result_t getEccState(zes_device_ecc_properties_t *pState) = 0;
|
|
virtual ze_result_t setEccState(const zes_device_ecc_desc_t *newState, zes_device_ecc_properties_t *pState) = 0;
|
|
|
|
virtual void init() = 0;
|
|
};
|
|
|
|
} // namespace Sysman
|
|
} // namespace L0
|