-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgpuprofiler.cpp
154 lines (130 loc) · 3.92 KB
/
gpuprofiler.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#include "framework.h"
namespace Framework
{
// GPUProfiler implementation
GPUProfiler::GPUProfiler()
: m_markerCount(0),
m_framesToBuffer(0),
m_framesToAverage(0),
m_iFrameCur(0),
m_framesSummed(0),
m_framesIssued(0)
{
}
void GPUProfiler::Init(
ID3D11Device * pDevice,
int markerCount,
int framesToBuffer /*= 3*/,
int framesToAverage /*= 30*/)
{
ASSERT_ERR(pDevice);
ASSERT_ERR(markerCount >= 0);
ASSERT_ERR(framesToBuffer >= 1);
ASSERT_ERR(framesToAverage >= 1);
m_markerCount = markerCount;
m_framesToBuffer = framesToBuffer;
m_framesToAverage = framesToAverage;
// Resize all the vectors appropriately
m_msAvg.clear(); m_msAvg.resize(markerCount + 1);
m_disjointQueries.clear(); m_disjointQueries.resize(framesToBuffer);
m_timestampQueries.clear(); m_timestampQueries.resize(framesToBuffer * (markerCount + 2));
m_msSum.clear(); m_msSum.resize(markerCount + 1);
m_iFrameCur = 0;
m_framesSummed = 0;
m_framesIssued = 0;
// Create all queries
D3D11_QUERY_DESC queryDesc = { D3D11_QUERY_TIMESTAMP_DISJOINT };
for (int i = 0; i < framesToBuffer; ++i)
{
CHECK_D3D(pDevice->CreateQuery(&queryDesc, &m_disjointQueries[i]));
}
queryDesc.Query = D3D11_QUERY_TIMESTAMP;
for (int i = 0, c = int(m_timestampQueries.size()); i < c; ++i)
{
CHECK_D3D(pDevice->CreateQuery(&queryDesc, &m_timestampQueries[i]));
}
}
void GPUProfiler::Reset()
{
m_msAvg.clear();
m_disjointQueries.clear();
m_timestampQueries.clear();
m_msSum.clear();
m_markerCount = 0;
m_framesToBuffer = 0;
m_framesToAverage = 0;
m_iFrameCur = 0;
m_framesSummed = 0;
m_framesIssued = 0;
}
void GPUProfiler::OnFrameStart(ID3D11DeviceContext * pCtx)
{
ASSERT_ERR(pCtx);
pCtx->Begin(m_disjointQueries[m_iFrameCur]);
pCtx->End(m_timestampQueries[m_iFrameCur * (m_markerCount + 2)]);
}
void GPUProfiler::Mark(ID3D11DeviceContext * pCtx, int iMarker)
{
ASSERT_ERR(pCtx);
ASSERT_ERR(iMarker >= 0 && iMarker < m_markerCount);
pCtx->End(m_timestampQueries[m_iFrameCur * (m_markerCount + 2) + iMarker + 1]);
}
template <typename T>
inline void WaitForQuery(ID3D11DeviceContext * pCtx, ID3D11Query * pQuery, T * pData)
{
HRESULT res = pCtx->GetData(pQuery, pData, sizeof(T), 0);
ASSERT_WARN(SUCCEEDED(res));
while (res == S_FALSE)
{
Sleep(1);
res = pCtx->GetData(pQuery, pData, sizeof(T), 0);
ASSERT_WARN(SUCCEEDED(res));
}
}
void GPUProfiler::OnFrameEnd(ID3D11DeviceContext * pCtx)
{
ASSERT_ERR(pCtx);
pCtx->End(m_timestampQueries[m_iFrameCur * (m_markerCount + 2) + m_markerCount + 1]);
pCtx->End(m_disjointQueries[m_iFrameCur]);
// Switch to the next set of queries for next frame
++m_framesIssued;
m_iFrameCur = (m_iFrameCur + 1) % m_framesToBuffer;
if (m_framesIssued < m_framesToBuffer)
{
// We're still starting up and haven't issued enough frames to gather data yet
return;
}
// Gather the oldest set of query data
D3D11_QUERY_DATA_TIMESTAMP_DISJOINT disjointData;
std::vector<u64> timestamps(m_markerCount + 2);
WaitForQuery(pCtx, m_disjointQueries[m_iFrameCur], &disjointData);
for (int i = 0; i < m_markerCount + 2; ++i)
{
WaitForQuery(
pCtx,
m_timestampQueries[m_iFrameCur * (m_markerCount + 2) + i],
×tamps[i]);
}
// If it's disjoint, gotta throw it out
if (disjointData.Disjoint)
return;
// Convert to milliseconds and accumulate onto sum
for (int i = 0; i < m_markerCount; ++i)
{
m_msSum[i] += 1000.0f * float(timestamps[i+1] - timestamps[i]) / float(disjointData.Frequency);
}
// The last element is the whole-frame time
m_msSum[m_markerCount] += 1000.0f * float(timestamps[m_markerCount+1] - timestamps[0]) / float(disjointData.Frequency);
// Recalculate averages if necessary
++m_framesSummed;
if (m_framesSummed >= m_framesToAverage)
{
for (int i = 0; i < m_markerCount + 1; ++i)
{
m_msAvg[i] = m_msSum[i] / m_framesSummed;
m_msSum[i] = 0.0f;
}
m_framesSummed = 0;
}
}
}