Compare commits
4 Commits
10fbcdb0f6
...
v0.2.1
| Author | SHA1 | Date | |
|---|---|---|---|
| d1649b7de1 | |||
| ff72f8d2ea | |||
| ad12f7a981 | |||
| 33a760489e |
12
PKGBUILD
12
PKGBUILD
@@ -1,19 +1,21 @@
|
|||||||
pkgname=fantasize
|
pkgname=fantasize
|
||||||
pkgver=0.1.9
|
pkgver=0.2.0
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc='C++ fan control for Linux'
|
pkgdesc='C++ fan control for Linux'
|
||||||
url='https://github.com/Tabascl/fantasize.git'
|
url='https://github.com/Tabascl/fantasize.git'
|
||||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/Tabascl/fantasize/archive/refs/tags/v$pkgver.tar.gz")
|
source=("$pkgname-$pkgver.tar.gz::https://github.com/Tabascl/fantasize/archive/refs/tags/v$pkgver.tar.gz")
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
makedepends=('git' 'cmake' 'nlohmann-json' 'boost' 'cuda')
|
makedepends=('git' 'meson' 'nlohmann-json' 'boost')
|
||||||
sha256sums=('SKIP')
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cmake -S "$pkgname-$pkgver/app" -B build -DCMAKE_BUILD_TYPE=Release
|
meson setup build "$pkgname-$pkgver/app" -Dbuildtype=Release
|
||||||
cmake --build build
|
cd build
|
||||||
|
meson compile
|
||||||
}
|
}
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cmake --install build --prefix "$pkgdir/" --verbose
|
cd build
|
||||||
|
meson install
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
cmake_minimum_required(VERSION 3.0)
|
|
||||||
|
|
||||||
project(fantasize VERSION 0.1.8)
|
|
||||||
|
|
||||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
||||||
|
|
||||||
find_package(nlohmann_json 3.11.2 REQUIRED)
|
|
||||||
find_package(Boost 1.74 COMPONENTS program_options log log_setup date_time REQUIRED)
|
|
||||||
|
|
||||||
add_executable(${PROJECT_NAME}
|
|
||||||
src/main.cxx
|
|
||||||
src/sensor/LMSensorsFacade.cxx
|
|
||||||
src/sensor/GPUSensorsFacade.cxx
|
|
||||||
src/sensor/Sensor.cxx
|
|
||||||
src/sensor/NvidiaSensor.cxx
|
|
||||||
src/sensor/LMSensor.cxx
|
|
||||||
src/pwm/PWMControl.cxx
|
|
||||||
src/pwm/PWMControlFacade.cxx
|
|
||||||
src/fan/HwmonFan.cxx
|
|
||||||
src/fan/FanCurve.cxx
|
|
||||||
src/fan/FanLabeler.cxx
|
|
||||||
src/fan/Aggregators.cxx
|
|
||||||
src/FanGenerator.cxx
|
|
||||||
src/Serializer.cxx
|
|
||||||
src/sensor/SensorManager.cxx
|
|
||||||
src/Controller.cxx
|
|
||||||
src/Settings.cxx
|
|
||||||
src/App.cxx
|
|
||||||
)
|
|
||||||
|
|
||||||
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 20)
|
|
||||||
|
|
||||||
target_include_directories(${PROJECT_NAME} PUBLIC include /opt/cuda)
|
|
||||||
target_link_libraries(${PROJECT_NAME} PUBLIC sensors nvidia-ml nlohmann_json::nlohmann_json tbb ${Boost_LIBRARIES})
|
|
||||||
|
|
||||||
install(TARGETS ${PROJECT_NAME} DESTINATION usr/local/bin)
|
|
||||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/unit/fantasize.service DESTINATION usr/lib/systemd/system)
|
|
||||||
@@ -17,6 +17,9 @@ public:
|
|||||||
virtual void StartPWM(int value) = 0;
|
virtual void StartPWM(int value) = 0;
|
||||||
virtual int StartPWM() = 0;
|
virtual int StartPWM() = 0;
|
||||||
|
|
||||||
|
virtual void ZeroFanModeSupported(bool value) = 0;
|
||||||
|
virtual bool ZeroFanModeSupported() = 0;
|
||||||
|
|
||||||
virtual void FindPWMLimits() = 0;
|
virtual void FindPWMLimits() = 0;
|
||||||
virtual void AdjustPWMLimits() = 0;
|
virtual void AdjustPWMLimits() = 0;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -24,6 +24,9 @@ public:
|
|||||||
void StartPWM(int value) override;
|
void StartPWM(int value) override;
|
||||||
int StartPWM() override;
|
int StartPWM() override;
|
||||||
|
|
||||||
|
void ZeroFanModeSupported(bool value) override;
|
||||||
|
bool ZeroFanModeSupported() override;
|
||||||
|
|
||||||
void FindPWMLimits() override;
|
void FindPWMLimits() override;
|
||||||
void AdjustPWMLimits() override;
|
void AdjustPWMLimits() override;
|
||||||
|
|
||||||
@@ -36,8 +39,9 @@ private:
|
|||||||
std::shared_ptr<Sensor> mRpmSensor;
|
std::shared_ptr<Sensor> mRpmSensor;
|
||||||
std::string mLabel;
|
std::string mLabel;
|
||||||
|
|
||||||
int mMinPWM;
|
int mMinPWM = 0;
|
||||||
int mStartPWM;
|
int mStartPWM = 0;
|
||||||
|
bool mZeroFanModeSupported = false;
|
||||||
std::chrono::time_point<std::chrono::steady_clock> mLastAdjustmentTime;
|
std::chrono::time_point<std::chrono::steady_clock> mLastAdjustmentTime;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
37
app/meson.build
Normal file
37
app/meson.build
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
project('fantasize', 'cpp', version : '0.2.1', default_options : ['cpp_std=c++20'])
|
||||||
|
|
||||||
|
src = [
|
||||||
|
'src/main.cxx',
|
||||||
|
'src/sensor/LMSensorsFacade.cxx',
|
||||||
|
'src/sensor/Sensor.cxx',
|
||||||
|
'src/sensor/LMSensor.cxx',
|
||||||
|
'src/pwm/PWMControl.cxx',
|
||||||
|
'src/pwm/PWMControlFacade.cxx',
|
||||||
|
'src/fan/HwmonFan.cxx',
|
||||||
|
'src/fan/FanCurve.cxx',
|
||||||
|
'src/fan/FanLabeler.cxx',
|
||||||
|
'src/fan/Aggregators.cxx',
|
||||||
|
'src/FanGenerator.cxx',
|
||||||
|
'src/Serializer.cxx',
|
||||||
|
'src/sensor/SensorManager.cxx',
|
||||||
|
'src/Controller.cxx',
|
||||||
|
'src/Settings.cxx',
|
||||||
|
'src/App.cxx'
|
||||||
|
]
|
||||||
|
|
||||||
|
deps = [
|
||||||
|
dependency('nlohmann_json'),
|
||||||
|
dependency('boost', modules : ['program_options', 'log', 'log_setup', 'date_time', 'thread']),
|
||||||
|
dependency('tbb'),
|
||||||
|
meson.get_compiler('cpp').find_library('sensors')
|
||||||
|
]
|
||||||
|
|
||||||
|
inc = include_directories('include')
|
||||||
|
|
||||||
|
exe = executable('fantasize',
|
||||||
|
src,
|
||||||
|
dependencies: deps,
|
||||||
|
install: true,
|
||||||
|
include_directories: inc)
|
||||||
|
|
||||||
|
install_data('unit/fantasize.service', install_dir : 'usr/lib/systemd/system')
|
||||||
@@ -13,16 +13,13 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
namespace fs = filesystem;
|
namespace fs = filesystem;
|
||||||
|
|
||||||
Serializer::Serializer()
|
Serializer::Serializer() {
|
||||||
{
|
|
||||||
if (!fs::exists(SERIALIZATION_DIR)) {
|
if (!fs::exists(SERIALIZATION_DIR)) {
|
||||||
fs::create_directory(SERIALIZATION_DIR);
|
fs::create_directory(SERIALIZATION_DIR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void Serializer::SerializeFans(vector<shared_ptr<Fan>> fans) {
|
||||||
Serializer::SerializeFans(vector<shared_ptr<Fan>> fans)
|
|
||||||
{
|
|
||||||
json obj;
|
json obj;
|
||||||
|
|
||||||
for (auto f : fans) {
|
for (auto f : fans) {
|
||||||
@@ -33,8 +30,7 @@ Serializer::SerializeFans(vector<shared_ptr<Fan>> fans)
|
|||||||
}
|
}
|
||||||
|
|
||||||
vector<shared_ptr<Fan>>
|
vector<shared_ptr<Fan>>
|
||||||
Serializer::DeserializeFans(vector<shared_ptr<Sensor>> availableSensors)
|
Serializer::DeserializeFans(vector<shared_ptr<Sensor>> availableSensors) {
|
||||||
{
|
|
||||||
vector<shared_ptr<Fan>> fans;
|
vector<shared_ptr<Fan>> fans;
|
||||||
|
|
||||||
// Create a for the sensors first, then searching becomes cheaper
|
// Create a for the sensors first, then searching becomes cheaper
|
||||||
@@ -52,11 +48,13 @@ Serializer::DeserializeFans(vector<shared_ptr<Sensor>> availableSensors)
|
|||||||
int minPWM = el.value()["MinPWM"];
|
int minPWM = el.value()["MinPWM"];
|
||||||
int startPWM = el.value()["StartPWM"];
|
int startPWM = el.value()["StartPWM"];
|
||||||
string label = el.value()["Label"];
|
string label = el.value()["Label"];
|
||||||
|
bool zeroFan = el.value()["ZeroFan"];
|
||||||
|
|
||||||
auto fan = make_shared<HwmonFan>(pwmControl, rpmSensor);
|
auto fan = make_shared<HwmonFan>(pwmControl, rpmSensor);
|
||||||
fan->MinPWM(minPWM);
|
fan->MinPWM(minPWM);
|
||||||
fan->StartPWM(startPWM);
|
fan->StartPWM(startPWM);
|
||||||
fan->Label(label);
|
fan->Label(label);
|
||||||
|
fan->ZeroFanModeSupported(zeroFan);
|
||||||
|
|
||||||
fans.push_back(fan);
|
fans.push_back(fan);
|
||||||
}
|
}
|
||||||
@@ -66,9 +64,7 @@ Serializer::DeserializeFans(vector<shared_ptr<Sensor>> availableSensors)
|
|||||||
return fans;
|
return fans;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void Serializer::WriteJson(json o) {
|
||||||
Serializer::WriteJson(json o)
|
|
||||||
{
|
|
||||||
json obj;
|
json obj;
|
||||||
|
|
||||||
if (fs::exists(fs::path(SERIALIZATION_DIR) / FANS_JSON_FILENAME)) {
|
if (fs::exists(fs::path(SERIALIZATION_DIR) / FANS_JSON_FILENAME)) {
|
||||||
@@ -83,18 +79,14 @@ Serializer::WriteJson(json o)
|
|||||||
ostrm << obj.dump(2) << "\n";
|
ostrm << obj.dump(2) << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
json
|
json Serializer::ReadJson() {
|
||||||
Serializer::ReadJson()
|
|
||||||
{
|
|
||||||
ifstream istrm(fs::path(SERIALIZATION_DIR) / FANS_JSON_FILENAME);
|
ifstream istrm(fs::path(SERIALIZATION_DIR) / FANS_JSON_FILENAME);
|
||||||
return json::parse(istrm);
|
return json::parse(istrm);
|
||||||
}
|
}
|
||||||
|
|
||||||
vector<shared_ptr<FanCurve>>
|
vector<shared_ptr<FanCurve>> Serializer::DeserializeFanCurves(
|
||||||
Serializer::DeserializeFanCurves(
|
|
||||||
std::vector<std::shared_ptr<Sensor>> availableSensors,
|
std::vector<std::shared_ptr<Sensor>> availableSensors,
|
||||||
std::vector<std::shared_ptr<Fan>> availableFans)
|
std::vector<std::shared_ptr<Fan>> availableFans) {
|
||||||
{
|
|
||||||
auto data = ReadJson();
|
auto data = ReadJson();
|
||||||
|
|
||||||
map<string, shared_ptr<Sensor>> sensorMap;
|
map<string, shared_ptr<Sensor>> sensorMap;
|
||||||
@@ -139,17 +131,14 @@ Serializer::DeserializeFanCurves(
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<Aggregator>
|
std::unique_ptr<Aggregator>
|
||||||
Serializer::aggregatorFromString(std::string str) const
|
Serializer::aggregatorFromString(std::string str) const {
|
||||||
{
|
|
||||||
if (str == "max")
|
if (str == "max")
|
||||||
return std::make_unique<MaxAggregator>();
|
return std::make_unique<MaxAggregator>();
|
||||||
else
|
else
|
||||||
return std::make_unique<AverageAggregator>();
|
return std::make_unique<AverageAggregator>();
|
||||||
}
|
}
|
||||||
|
|
||||||
shared_ptr<Settings>
|
shared_ptr<Settings> Serializer::DeserializeSettings() {
|
||||||
Serializer::DeserializeSettings()
|
|
||||||
{
|
|
||||||
int frequency = FREQUENCY_DEFAULT;
|
int frequency = FREQUENCY_DEFAULT;
|
||||||
|
|
||||||
auto data = ReadJson();
|
auto data = ReadJson();
|
||||||
|
|||||||
@@ -12,22 +12,17 @@ FanCurve::FanCurve(std::vector<FanStep> steps,
|
|||||||
std::vector<std::shared_ptr<Sensor>> sensors,
|
std::vector<std::shared_ptr<Sensor>> sensors,
|
||||||
std::vector<std::shared_ptr<Fan>> fans,
|
std::vector<std::shared_ptr<Fan>> fans,
|
||||||
std::unique_ptr<Aggregator> aggregator)
|
std::unique_ptr<Aggregator> aggregator)
|
||||||
: mSteps(steps)
|
: mSteps(steps), mTempSensors(sensors), mFans(fans),
|
||||||
, mTempSensors(sensors)
|
mAggregator(std::move(aggregator)) {
|
||||||
, mFans(fans)
|
|
||||||
, mAggregator(std::move(aggregator))
|
|
||||||
{
|
|
||||||
PrintInfo();
|
PrintInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void FanCurve::DoFanControl() {
|
||||||
FanCurve::DoFanControl()
|
|
||||||
{
|
|
||||||
BOOST_LOG_FUNCTION();
|
BOOST_LOG_FUNCTION();
|
||||||
|
|
||||||
int temp = AggregateTemperature();
|
int temp = AggregateTemperature();
|
||||||
|
|
||||||
int t0, t1, p0, p1;
|
int t0 = 0, t1 = 0, p0 = 0, p1 = 0;
|
||||||
int targetFanPower;
|
int targetFanPower;
|
||||||
|
|
||||||
if (temp <= mSteps[0].Temp) {
|
if (temp <= mSteps[0].Temp) {
|
||||||
@@ -35,7 +30,7 @@ FanCurve::DoFanControl()
|
|||||||
} else if (temp > mSteps[mSteps.size() - 1].Temp) {
|
} else if (temp > mSteps[mSteps.size() - 1].Temp) {
|
||||||
targetFanPower = mSteps[mSteps.size() - 1].Percent;
|
targetFanPower = mSteps[mSteps.size() - 1].Percent;
|
||||||
} else {
|
} else {
|
||||||
for (int i = 0; i < mSteps.size(); i++) {
|
for (int i = 0; i < (int)mSteps.size(); i++) {
|
||||||
if (temp > mSteps[i].Temp) {
|
if (temp > mSteps[i].Temp) {
|
||||||
t0 = mSteps[i].Temp;
|
t0 = mSteps[i].Temp;
|
||||||
p0 = mSteps[i].Percent;
|
p0 = mSteps[i].Percent;
|
||||||
@@ -49,7 +44,7 @@ FanCurve::DoFanControl()
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (auto f : mFans) {
|
for (auto f : mFans) {
|
||||||
if (f->RPM() <= 0) {
|
if (!f->ZeroFanModeSupported() && f->RPM() <= 0) {
|
||||||
BOOST_LOG_TRIVIAL(warning) << "Fan stopped completely!";
|
BOOST_LOG_TRIVIAL(warning) << "Fan stopped completely!";
|
||||||
f->PWM(f->StartPWM());
|
f->PWM(f->StartPWM());
|
||||||
f->AdjustPWMLimits();
|
f->AdjustPWMLimits();
|
||||||
@@ -59,15 +54,11 @@ FanCurve::DoFanControl()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int FanCurve::AggregateTemperature() {
|
||||||
FanCurve::AggregateTemperature()
|
|
||||||
{
|
|
||||||
return mAggregator->aggregate(mTempSensors);
|
return mAggregator->aggregate(mTempSensors);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void FanCurve::PrintInfo() {
|
||||||
FanCurve::PrintInfo()
|
|
||||||
{
|
|
||||||
BOOST_LOG_FUNCTION()
|
BOOST_LOG_FUNCTION()
|
||||||
|
|
||||||
BOOST_LOG_TRIVIAL(info) << "### Fan curve:";
|
BOOST_LOG_TRIVIAL(info) << "### Fan curve:";
|
||||||
|
|||||||
@@ -39,6 +39,12 @@ void HwmonFan::StartPWM(int value) { mStartPWM = value; }
|
|||||||
|
|
||||||
int HwmonFan::StartPWM() { return mStartPWM; }
|
int HwmonFan::StartPWM() { return mStartPWM; }
|
||||||
|
|
||||||
|
void HwmonFan::ZeroFanModeSupported(bool value) {
|
||||||
|
mZeroFanModeSupported = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool HwmonFan::ZeroFanModeSupported() { return mZeroFanModeSupported; }
|
||||||
|
|
||||||
void HwmonFan::FindPWMLimits() {
|
void HwmonFan::FindPWMLimits() {
|
||||||
cout << "Looking for minimal PWM" << endl;
|
cout << "Looking for minimal PWM" << endl;
|
||||||
int minPWM = 0;
|
int minPWM = 0;
|
||||||
@@ -95,11 +101,9 @@ void HwmonFan::AdjustPWMLimits() {
|
|||||||
|
|
||||||
json HwmonFan::toJson() const {
|
json HwmonFan::toJson() const {
|
||||||
json obj;
|
json obj;
|
||||||
obj = {mPWMControl->toJson(),
|
obj = {mPWMControl->toJson(), mRpmSensor->toJson(),
|
||||||
mRpmSensor->toJson(),
|
{"Label", mLabel}, {"MinPWM", mMinPWM},
|
||||||
{"Label", mLabel},
|
{"StartPWM", mStartPWM}, {"ZeroFan", mZeroFanModeSupported}};
|
||||||
{"MinPWM", mMinPWM},
|
|
||||||
{"StartPWM", mStartPWM}};
|
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#include <App.h>
|
#include <App.h>
|
||||||
|
|
||||||
#define PROJECT_VERSION "v0.1.9"
|
#define PROJECT_VERSION "v0.2.1"
|
||||||
|
|
||||||
namespace po = boost::program_options;
|
namespace po = boost::program_options;
|
||||||
namespace logging = boost::log;
|
namespace logging = boost::log;
|
||||||
@@ -29,15 +29,9 @@ App app;
|
|||||||
|
|
||||||
static int doInitialSetup = 0;
|
static int doInitialSetup = 0;
|
||||||
|
|
||||||
void
|
void signal_handler(int s) { app.Shutdown(); }
|
||||||
signal_handler(int s)
|
|
||||||
{
|
|
||||||
app.Shutdown();
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void InitLogging(bool verbose) {
|
||||||
InitLogging(bool verbose)
|
|
||||||
{
|
|
||||||
logging::add_console_log(
|
logging::add_console_log(
|
||||||
std::clog,
|
std::clog,
|
||||||
logging::keywords::format =
|
logging::keywords::format =
|
||||||
@@ -66,9 +60,7 @@ InitLogging(bool verbose)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int main(int argc, char **argv) {
|
||||||
main(int argc, char** argv)
|
|
||||||
{
|
|
||||||
BOOST_LOG_FUNCTION()
|
BOOST_LOG_FUNCTION()
|
||||||
BOOST_LOG_TRIVIAL(info) << "Version: " << PROJECT_VERSION;
|
BOOST_LOG_TRIVIAL(info) << "Version: " << PROJECT_VERSION;
|
||||||
|
|
||||||
@@ -77,8 +69,8 @@ main(int argc, char** argv)
|
|||||||
|
|
||||||
po::options_description desc("Allowed options");
|
po::options_description desc("Allowed options");
|
||||||
desc.add_options()("help,h", "produce help message")(
|
desc.add_options()("help,h", "produce help message")(
|
||||||
"setup,s", po::bool_switch(), "run initial setup")(
|
"setup,s", po::bool_switch(),
|
||||||
"verbose,v", po::bool_switch(), "print debug info");
|
"run initial setup")("verbose,v", po::bool_switch(), "print debug info");
|
||||||
|
|
||||||
po::variables_map vm;
|
po::variables_map vm;
|
||||||
po::store(po::parse_command_line(argc, argv, desc), vm);
|
po::store(po::parse_command_line(argc, argv, desc), vm);
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
#include <boost/json/kind.hpp>
|
#include <boost/json/kind.hpp>
|
||||||
#include <sensor/LMSensor.h>
|
#include <sensor/LMSensor.h>
|
||||||
#include <sensors/sensors.h>
|
#include <sensors/sensors.h>
|
||||||
@@ -17,7 +19,9 @@ int LMSensor::value() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const string LMSensor::toString() const {
|
const string LMSensor::toString() const {
|
||||||
return sensors_get_label(mChipName, mFeature);
|
ostringstream os;
|
||||||
|
os << mChipName->prefix << "." << sensors_get_label(mChipName, mFeature);
|
||||||
|
return os.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
json LMSensor::toJson() const {
|
json LMSensor::toJson() const {
|
||||||
|
|||||||
@@ -11,8 +11,9 @@ vector<shared_ptr<Sensor>> SensorManager::TemperatureSensors() {
|
|||||||
|
|
||||||
tempSensors = mLMSensorsFacade->TemperatureSensors();
|
tempSensors = mLMSensorsFacade->TemperatureSensors();
|
||||||
|
|
||||||
auto gpuSensors = mGPUSensorsFacade->TemperatureSensors();
|
// auto gpuSensors = mGPUSensorsFacade->TemperatureSensors();
|
||||||
tempSensors.insert(tempSensors.end(), gpuSensors.begin(), gpuSensors.end());
|
// tempSensors.insert(tempSensors.end(), gpuSensors.begin(),
|
||||||
|
// gpuSensors.end());
|
||||||
|
|
||||||
return tempSensors;
|
return tempSensors;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user