Files
compute-runtime/level_zero/tools/source/sysman/ras/os_ras.h
Vilvaraj, T J Vivek 324b1f5c60 RAS APIs boilerplate for Level Zero Sysman.
-Implement zetSysmanRasGet API

Change-Id: Ib06e4a5d087a1e684c918413c3d98da2082e4f91
Signed-off-by: Vilvaraj, T J Vivek <t.j.vivek.vilvaraj@intel.com>
2020-04-21 20:04:53 +02:00

20 lines
258 B
C++

/*
* Copyright (C) 2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
namespace L0 {
struct OsSysman;
class OsRas {
public:
static OsRas *create(OsSysman *pOsSysman);
virtual ~OsRas() = default;
};
} // namespace L0