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

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

		uint32_t flopsDone;
		uint32_t id;
	};
}