mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
The following modifications were done as part of the fix for warm reset. 1. Release sysman resources before quiscenting the GPU. 2. Add additional checks to confirm quiscenting of the GPU before launching the diagnostics tests. 3. Fixed warm reset with wait time to allow the changes to be propagated to the entire GPU PCI tree. 4. Modified the ULT's completely to avoid the usage of MOCKS. 5. Made Diagnostics handle creation per-device from per-SubDevice. Related-To: LOCI-3053 Signed-off-by: Vilvaraj, T J Vivek <t.j.vivek.vilvaraj@intel.com>
32 lines
1010 B
C++
32 lines
1010 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/non_copyable_or_moveable.h"
|
|
#include "shared/source/helpers/string.h"
|
|
|
|
#include "level_zero/tools/source/sysman/diagnostics/diagnostics.h"
|
|
#include "level_zero/tools/source/sysman/diagnostics/os_diagnostics.h"
|
|
#include <level_zero/zes_api.h>
|
|
|
|
namespace L0 {
|
|
|
|
class OsDiagnostics;
|
|
|
|
class DiagnosticsImp : public Diagnostics, NEO::NonCopyableOrMovableClass {
|
|
public:
|
|
ze_result_t diagnosticsGetProperties(zes_diag_properties_t *pProperties) override;
|
|
ze_result_t diagnosticsGetTests(uint32_t *pCount, zes_diag_test_t *pTests) override;
|
|
ze_result_t diagnosticsRunTests(uint32_t start, uint32_t end, zes_diag_result_t *pResult) override;
|
|
DiagnosticsImp() = default;
|
|
DiagnosticsImp(OsSysman *pOsSysman, const std::string &initalizedDiagTest);
|
|
~DiagnosticsImp() override;
|
|
std::unique_ptr<OsDiagnostics> pOsDiagnostics = nullptr;
|
|
};
|
|
|
|
} // namespace L0
|