summaryrefslogtreecommitdiff
path: root/Simulator/include/simulation/history/WorkloadSnapshot.h
blob: 30a93898eb5e32a233e44e42ca5d8fe8886cf4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

namespace Simulation
{
	class WorkloadSnapshot
	{
	public:
		WorkloadSnapshot(uint32_t id, uint32_t flopsDone, uint32_t coresUsed) : flopsDone(flopsDone), id(id), coresUsed(coresUsed) {}

		uint32_t flopsDone;
		uint32_t id;
		uint32_t coresUsed;
	};
}