forked from patflick/miopen-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgputop.cpp
29 lines (22 loc) · 839 Bytes
/
gputop.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "miopen.hpp"
#include <chrono>
#include <thread>
int main(int argc, char *argv[])
{
INFO("Finding & Initializing Devices...");
std::vector<Device> devs = Devices::get_devices();
while (1) {
std::cout << "GPU\t\t\tTemp\tFan\tClk\t\tMClk" << std::endl;
for (size_t i = 0; i < devs.size(); ++i) {
std::cout << "GPU " << devs[i].hip_id << " (" << devs[i].hip_props.name << "):\t";
std::cout << devs[i].getTemp() << " C\t";
std::cout << devs[i].getFanspeed()*100/255 << " %\t";
std::cout << devs[i].getClock() << " MHz\t";
std::cout << devs[i].getMemClock() << " MHz\t";
std::cout << std::endl;
}
std::cout << std::endl;
std::this_thread::sleep_for(std::chrono::milliseconds(500));
}
return 0;
}