-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
gpu_runtime.cpp
202 lines (175 loc) · 5.52 KB
/
gpu_runtime.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
#include <stdlib.h>
#include <iostream>
#include <stdexcept>
#include <fstream>
#include <set>
#include <verilated.h>
#include <vector>
#include <bitset>
#include <verilated_vcd_c.h>
#include "gpu_card.h"
#include "gpu_runtime.h"
#define MAX_SIM_TIME 5000000
// #define MAX_SIM_TIME 250
vluint64_t sim_time = 0;
// yes we need to move to 64-bits soonish...
uint32_t totalMemoryBytes = 16 * 1024 * 1024; // 16MB
double sc_time_stamp()
{
return sim_time;
}
static gpu_card *dut = 0;
// std::vector<MemoryInfo *> freeSpaces;
static std::set<MemoryInfo *> freeSpaces;
static std::set<MemoryInfo *> usedSpaces;
enum e_instr
{
NOP = 0,
COPY_TO_GPU = 1,
COPY_FROM_GPU = 2,
KERNEL_LAUNCH = 3
};
void tick()
{
dut->clk = 0;
sim_time += 5;
dut->eval();
dut->clk = 1;
sim_time += 5;
dut->eval();
}
void gpuCreateContext()
{
dut = new gpu_card;
dut->rst = 0;
// dut->oob_wen = 0;
// dut->ena = 0;
dut->cpu_recv_instr = NOP;
tick();
dut->rst = 1;
tick();
// we skip the first 32 words, so that we can have void pointers
MemoryInfo *p_memInfo = new MemoryInfo(128, totalMemoryBytes - 128);
freeSpaces.insert(p_memInfo);
}
void gpuDestroyContext()
{
delete dut;
dut = 0;
}
std::ostream &operator<<(std::ostream &os, const MemoryInfo &mi)
{
os << "MemoryInfo(pos=" << mi.pos << ", size=" << mi.size << ")";
return os;
}
void *gpuMalloc(uint32_t requestedBytes)
{
// who should manage the memory? driver? gpu?
// maybe driver???
std::cout << "gpuMalloc " << requestedBytes << std::endl;
MemoryInfo *freeSpace = 0;
for (auto it = freeSpaces.begin(), e = freeSpaces.end(); it != e; it++)
{
MemoryInfo *candidate = *it;
std::cout << " gpuMalloc candidate size " << candidate->size << " requested " << requestedBytes << std::endl;
if (candidate->size >= requestedBytes)
{
freeSpace = candidate;
break;
}
}
// std::cout << "freeSpace " << freeSpace << std::endl;
if (freeSpace == 0)
{
throw std::runtime_error(std::string("Not enough free space"));
}
// std::cout << "found freeSpace" << *freeSpace << std::endl;
if (freeSpace->size > requestedBytes + 256)
{
// std::cout << "splitting, since available chunk is size " << freeSpace->size
// << " and we only need " << requestedBytes << std::endl;
MemoryInfo *secondSpace = new MemoryInfo(freeSpace->pos + requestedBytes, freeSpace->size - requestedBytes);
// std::cout << "new spaces " << *freeSpace << " " << *secondSpace << std::endl;
freeSpaces.erase(freeSpace);
freeSpaces.insert(secondSpace);
usedSpaces.insert(freeSpace);
return (void *)freeSpace->pos;
}
else
{
freeSpaces.erase(freeSpace);
usedSpaces.insert(freeSpace);
return (void *)freeSpace->pos;
}
}
void gpuCopyToDevice(void *gpuMemPtr, const void *srcData, size_t numBytes)
{
// std::cout << "gpuCopyToDevice our addr " << srcData << " theirs " << gpuMemPtr << " numBytes " << numBytes << std::endl;
dut->cpu_recv_instr = COPY_TO_GPU;
tick();
dut->cpu_in_data = (uint32_t)(size_t)gpuMemPtr;
tick();
dut->cpu_in_data = (uint32_t)numBytes;
tick();
dut->cpu_recv_instr = NOP;
uint32_t *srcDataWords = (uint32_t *)srcData;
long numWords = numBytes >> 2;
for (long i = 0; i < numWords; i++)
{
// std::cout << "sending word " << i << " which is " << srcDataWords[i] << std::endl;
dut->cpu_in_data = srcDataWords[i];
tick();
}
// std::cout << "hopefully copied data to GPU" << std::endl;
}
void gpuCopyFromDevice(void *destData, const void *gpuMemPtr, size_t numBytes)
{
// std::cout << "gpuCopyFromDevice our addr " << destData << " theirs " << gpuMemPtr << " numBytes " << numBytes << std::endl;
dut->cpu_recv_instr = COPY_FROM_GPU;
tick();
dut->cpu_in_data = (uint32_t)(size_t)gpuMemPtr;
tick();
dut->cpu_in_data = (uint32_t)numBytes;
tick();
dut->cpu_recv_instr = NOP;
uint32_t *destDataWords = (uint32_t *)destData;
long numWords = numBytes >> 2;
// std::cout << "gpuCopyFromDevice numWords=" << numWords << " sim_time=" << sim_time << std::endl;
long i = 0;
while(i < numWords && sim_time < MAX_SIM_TIME) {
// std::cout << "gpuCopyFromDevice i=" << i << " sim_time=" << sim_time << std::endl;
if (dut->cpu_out_ack) {
destDataWords[i] = dut->cpu_out_data;
// std::cout << "gpuCopyFromDevice received word " << i << " which is " << destDataWords[i] << std::endl;
i++;
}
tick();
}
// for (long i = 0; i < numWords; i++)
// {
// tick();
// destDataWords[i] = dut->cpu_out_data;
// std::cout << "received word " << i << " which is " << destDataWords[i] << std::endl;
// }
// std::cout << "hopefully received data from GPU" << std::endl;
}
void gpuLaunchKernel(const void *kernelPos, uint32_t numParams, const uint32_t *const p_params)
{
dut->cpu_recv_instr = KERNEL_LAUNCH;
tick();
dut->cpu_in_data = (size_t)kernelPos;
tick();
dut->cpu_in_data = numParams;
tick();
for(int i = 0; i < numParams; i++) {
dut->cpu_in_data = p_params[i];
tick();
}
dut->cpu_recv_instr = NOP;
while (!dut->cpu_out_ack)
{
// std::cout << "gpu_runtime.cpp awaiting cpu_out_ack" << std::endl;
tick();
}
// std::cout << "gpu_runtime.cpp gpuLaunchKernel kernel finished" << std::endl;
}