mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00
22 lines
349 B
C++
22 lines
349 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <level_zero/zet_api.h>
|
|
|
|
namespace L0 {
|
|
|
|
class sysmanDevice {
|
|
public:
|
|
virtual ~sysmanDevice(){};
|
|
virtual ze_result_t deviceGetProperties(zet_sysman_properties_t *pProperties) = 0;
|
|
|
|
virtual void init() = 0;
|
|
};
|
|
|
|
} // namespace L0
|