mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
25 lines
615 B
C++
25 lines
615 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "os_interface/performance_counters.h"
|
|
|
|
namespace NEO {
|
|
|
|
class PerformanceCountersLinux : virtual public PerformanceCounters {
|
|
public:
|
|
PerformanceCountersLinux() = default;
|
|
~PerformanceCountersLinux() override = default;
|
|
|
|
/////////////////////////////////////////////////////
|
|
// Gpu oa/mmio configuration.
|
|
/////////////////////////////////////////////////////
|
|
bool enableCountersConfiguration() override;
|
|
void releaseCountersConfiguration() override;
|
|
};
|
|
} // namespace NEO
|