compute-runtime/level_zero/tools/source/sysman/frequency/frequency_imp.h

44 lines
1.2 KiB
C++

/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "level_zero/tools/source/sysman/frequency/frequency.h"
#include "level_zero/tools/source/sysman/frequency/os_frequency.h"
#include <level_zero/zet_api.h>
namespace L0 {
class FrequencyImp : public Frequency {
public:
ze_result_t frequencyGetProperties(zet_freq_properties_t *pProperties) override;
ze_result_t frequencyGetRange(zet_freq_range_t *pLimits) override;
ze_result_t frequencySetRange(const zet_freq_range_t *pLimits) override;
ze_result_t frequencyGetState(zet_freq_state_t *pState) override;
FrequencyImp(OsSysman *pOsSysman);
~FrequencyImp() override;
FrequencyImp(OsFrequency *pOsFrequency) : pOsFrequency(pOsFrequency) { init(); };
// Don't allow copies of the FrequencyImp object
FrequencyImp(const FrequencyImp &obj) = delete;
FrequencyImp &operator=(const FrequencyImp &obj) = delete;
private:
static const double step;
static const bool canControl;
OsFrequency *pOsFrequency;
zet_freq_properties_t frequencyProperties;
double *pClocks;
uint32_t numClocks;
void init();
};
} // namespace L0