Files
compute-runtime/opencl/source/os_interface/linux/performance_counters_linux.h
kamdiedrich d015d3633f Add absolute path to include
Change-Id: Ib0782b4ab8d9a26ec358ecfb57721f4fe8d51b06
2020-02-23 08:47:49 +01:00

25 lines
629 B
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "opencl/source/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