-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathcalc_intersection_device.cpp
More file actions
392 lines (345 loc) · 14.8 KB
/
calc_intersection_device.cpp
File metadata and controls
392 lines (345 loc) · 14.8 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/**********************************************************************
Copyright (c) 2016 Advanced Micro Devices, Inc. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
********************************************************************/
#include "calc_intersection_device.h"
#include "calc.h"
#include "buffer.h"
#include "device.h"
#include "event.h"
#include "../primitive/shapeimpl.h"
#include "calc_holder.h"
#include "../intersector/intersector.h"
#include "../intersector/intersector_2level.h"
#include "../intersector/intersector_skip_links.h"
#include "../intersector/intersector_short_stack.h"
#include "../intersector/intersector_lds.h"
#include "../intersector/intersector_hlbvh.h"
#include "../intersector/intersector_bittrail.h"
#include "../world/world.h"
#include <iostream>
#include <memory>
namespace RadeonRays
{
// TODO: handle different BVH strategies, for now hardcoded
CalcIntersectionDevice::CalcIntersectionDevice(Calc::Calc* calc, Calc::Device* device)
: m_device(device, [calc](Calc::Device* device) { calc->DeleteDevice(device); })
, m_intersector(new IntersectorSkipLinks(device))
, m_intersector_string("bvh")
{
// Initialize event pool
for (auto i = 0; i < EVENT_POOL_INITIAL_SIZE; ++i)
{
m_event_pool.push(new CalcEventHolder());
}
}
CalcIntersectionDevice::~CalcIntersectionDevice()
{
while (!m_event_pool.empty())
{
auto event = m_event_pool.front();
m_event_pool.pop();
delete event;
}
}
void CalcIntersectionDevice::Preprocess(World const& world)
{
bool use2level = false;
// First check if 2 level BVH has been forced
auto opt2level = world.options_.GetOption("bvh.force2level");
if (opt2level && opt2level->AsFloat() > 0.f)
{
use2level = true;
}
else
{
auto opt_force_flat = world.options_.GetOption("bvh.forceflat");
if (opt_force_flat && opt_force_flat->AsFloat() > 0.f)
{
use2level = false;
}
else
{
// Otherwise check if there are instances in the world
for (auto shape : world.shapes_)
{
// Get implementation
auto shapeimpl = static_cast<ShapeImpl const*>(shape);
// Check if it is an instance and update flag
use2level = use2level | shapeimpl->is_instance();
}
}
}
if (use2level)
{
if (m_intersector_string != "bvh2l")
{
m_intersector.reset(new IntersectorTwoLevel(m_device.get()));
m_intersector_string = "bvh2l";
}
}
else
{
{
auto optacctype = world.options_.GetOption("acc.type");
std::string acctype = optacctype ? optacctype->AsString() : "bvh";
if (acctype == "bvh")
{
if (m_intersector_string != "bvh")
{
m_intersector.reset(new IntersectorSkipLinks(m_device.get()));
m_intersector_string = "bvh";
}
}
else if (acctype == "fatbvh")
{
if (m_intersector_string != "fatbvh")
{
#if 0
m_intersector.reset(new IntersectorShortStack(m_device.get()));
m_intersector_string = "fatbvh";
#else
m_intersector.reset(new IntersectorLDS(m_device.get()));
m_intersector_string = "fatbvh";
#endif
}
}
else if (acctype == "hlbvh")
{
if (m_intersector_string != "hlbvh")
{
m_intersector.reset(new IntersectorHlbvh(m_device.get()));
m_intersector_string = "hlbvh";
}
}
/*else if (acctype == "hashbvh")
{
if (m_intersector_string != "hashbvh")
{
m_intersector.reset(new IntersectorBitTrail(m_device.get()));
m_intersector_string = "hashbvh";
}
}*/
}
}
try
{
// Let intersector to do its preprocessing job
m_intersector->SetWorld(world);
}
catch (Exception& e)
{
std::cout << e.what();
throw;
}
}
Buffer* CalcIntersectionDevice::CreateBuffer(size_t size, void* initdata) const
{
// If initdata is passed in use different Calc call with init data
if (initdata)
{
auto calc_buffer = m_device->CreateBuffer(size, Calc::BufferType::kWrite, initdata);
return new CalcBufferHolder(m_device.get(), calc_buffer);
}
else
{
auto calc_buffer = m_device->CreateBuffer(size, Calc::BufferType::kWrite);
return new CalcBufferHolder(m_device.get(), calc_buffer);
}
}
void CalcIntersectionDevice::DeleteBuffer(Buffer* const buffer) const
{
delete buffer;
}
void CalcIntersectionDevice::DeleteEvent(Event* const event) const
{
ReleaseEventHolder(static_cast<CalcEventHolder*>(event));
}
static Calc::MapType CalcMapType(MapType type)
{
switch (type)
{
case kMapRead:
return Calc::MapType::kMapRead;
case kMapWrite:
return Calc::MapType::kMapWrite;
default:
return Calc::MapType::kMapWrite;
}
}
void CalcIntersectionDevice::MapBuffer(Buffer* buffer, MapType type, size_t offset, size_t size, void** data, Event** event) const
{
auto calc_buffer = static_cast<CalcBufferHolder*>(buffer);
if (event)
{
Calc::Event* e = nullptr;
m_device->MapBuffer(calc_buffer->GetData(), 0, offset, size, CalcMapType(type), data, &e);
auto holder = CreateEventHolder();
holder->Set(m_device.get(), e);
*event = holder;
}
else
{
m_device->MapBuffer(calc_buffer->GetData(), 0, offset, size, CalcMapType(type), data, nullptr);
}
}
void CalcIntersectionDevice::UnmapBuffer(Buffer* buffer, void* ptr, Event** event) const
{
auto calc_buffer = static_cast<CalcBufferHolder*>(buffer);
if (event)
{
Calc::Event* e = nullptr;
m_device->UnmapBuffer(calc_buffer->GetData(), 0, ptr, &e);
auto holder = CreateEventHolder();
holder->Set(m_device.get(), e);
*event = holder;
}
else
{
m_device->UnmapBuffer(calc_buffer->GetData(), 0, ptr, nullptr);
}
}
void CalcIntersectionDevice::QueryIntersection(Buffer const* rays, int numrays, Buffer* hits, Event const* waitevent, Event** event) const
{
// Extract Calc buffers from their holders
auto ray_buffer = static_cast<CalcBufferHolder const*>(rays)->m_buffer.get();
auto hit_buffer = static_cast<CalcBufferHolder const*>(hits)->m_buffer.get();
// If waitevent is passed in we have to extract it as well
auto e = waitevent ? static_cast<CalcEventHolder const*>(waitevent)->m_event.get() : nullptr;
if (event)
{
// event pointer has been provided, so construct holder and return event to the user
Calc::Event* calc_event = nullptr;
m_intersector->QueryIntersection(0, ray_buffer, numrays, hit_buffer, e, &calc_event);
auto holder = CreateEventHolder();
holder->Set(m_device.get(), calc_event);
*event = holder;
}
else
{
m_intersector->QueryIntersection(0, ray_buffer, numrays, hit_buffer, e, nullptr);
}
}
void CalcIntersectionDevice::QueryOcclusion(Buffer const* rays, int numrays, Buffer* hits, Event const* waitevent, Event** event) const
{
// Extract Calc buffers from their holders
auto ray_buffer = static_cast<CalcBufferHolder const*>(rays)->m_buffer.get();
auto hit_buffer = static_cast<CalcBufferHolder const*>(hits)->m_buffer.get();
// If waitevent is passed in we have to extract it as well
auto e = waitevent ? static_cast<CalcEventHolder const*>(waitevent)->m_event.get() : nullptr;
if (event)
{
// event pointer has been provided, so construct holder and return event to the user
Calc::Event* calc_event = nullptr;
m_intersector->QueryOcclusion(0, ray_buffer, numrays, hit_buffer, e, &calc_event);
auto holder = CreateEventHolder();
holder->Set(m_device.get(), calc_event);
*event = holder;
}
else
{
m_intersector->QueryOcclusion(0, ray_buffer, numrays, hit_buffer, e, nullptr);
}
}
void CalcIntersectionDevice::QueryOccluded2dSumLinear2(Buffer const* origins, Buffer const* directions, Buffer const* koefs, Buffer const* offset_directions, Buffer const* offset_koefs, int numorigins, int numdirections, Buffer* hits, Event const* waitevent, Event** event) const
{
// Extract Calc buffers from their holders
auto origins_buffer = static_cast<CalcBufferHolder const*>(origins)->m_buffer.get();
auto directions_buffer = static_cast<CalcBufferHolder const*>(directions)->m_buffer.get();
auto koefs_buffer = static_cast<CalcBufferHolder const*>(koefs)->m_buffer.get();
auto offset_directions_buffer = static_cast<CalcBufferHolder const*>(offset_directions)->m_buffer.get();
auto offset_koefs_buffer = static_cast<CalcBufferHolder const*>(offset_koefs)->m_buffer.get();
auto hit_buffer = static_cast<CalcBufferHolder const*>(hits)->m_buffer.get();
// If waitevent is passed in we have to extract it as well
auto e = waitevent ? static_cast<CalcEventHolder const*>(waitevent)->m_event.get() : nullptr;
if (event)
{
// event pointer has been provided, so construct holder and return event to the user
Calc::Event* calc_event = nullptr;
m_intersector->QueryOccluded2dSumLinear2(0, origins_buffer, directions_buffer, koefs_buffer, offset_directions_buffer, offset_koefs_buffer, numorigins, numdirections, hit_buffer, e, &calc_event);
auto holder = CreateEventHolder();
holder->Set(m_device.get(), calc_event);
*event = holder;
}
else
{
m_intersector->QueryOccluded2dSumLinear2(0, origins_buffer, directions_buffer, koefs_buffer, offset_directions_buffer, offset_koefs_buffer, numorigins, numdirections, hit_buffer, e, nullptr);
}
}
void CalcIntersectionDevice::QueryIntersection(Buffer const* rays, Buffer const* numrays, int maxrays, Buffer* hits, Event const* waitevent, Event** event) const
{
// Extract Calc buffers from their holders
auto ray_buffer = static_cast<CalcBufferHolder const*>(rays)->m_buffer.get();
auto hit_buffer = static_cast<CalcBufferHolder const*>(hits)->m_buffer.get();
auto numrays_buffer = static_cast<CalcBufferHolder const*>(numrays)->m_buffer.get();
// If waitevent is passed in we have to extract it as well
auto e = waitevent ? static_cast<CalcEventHolder const*>(waitevent)->m_event.get() : nullptr;
if (event)
{
// event pointer has been provided, so construct holder and return event to the user
Calc::Event* calc_event = nullptr;
m_intersector->QueryIntersection(0, ray_buffer, numrays_buffer, maxrays, hit_buffer, e, &calc_event);
auto holder = CreateEventHolder();
holder->Set(m_device.get(), calc_event);
*event = holder;
}
else
{
m_intersector->QueryIntersection(0, ray_buffer, numrays_buffer, maxrays, hit_buffer, e, nullptr);
}
}
void CalcIntersectionDevice::QueryOcclusion(Buffer const* rays, Buffer const* numrays, int maxrays, Buffer* hits, Event const* waitevent, Event** event) const
{
// Extract Calc buffers from their holders
auto ray_buffer = static_cast<CalcBufferHolder const*>(rays)->m_buffer.get();
auto hit_buffer = static_cast<CalcBufferHolder const*>(hits)->m_buffer.get();
auto numrays_buffer = static_cast<CalcBufferHolder const*>(numrays)->m_buffer.get();
// If waitevent is passed in we have to extract it as well
auto e = waitevent ? static_cast<CalcEventHolder const*>(waitevent)->m_event.get() : nullptr;
if (event)
{
// event pointer has been provided, so construct holder and return event to the user
Calc::Event* calc_event = nullptr;
m_intersector->QueryOcclusion(0, ray_buffer, numrays_buffer, maxrays, hit_buffer, e, &calc_event);
auto holder = CreateEventHolder();
holder->Set(m_device.get(), calc_event);
*event = holder;
}
else
{
m_intersector->QueryOcclusion(0, ray_buffer, numrays_buffer, maxrays, hit_buffer, e, nullptr);
}
}
CalcEventHolder* CalcIntersectionDevice::CreateEventHolder() const
{
if (m_event_pool.empty())
{
auto event = new CalcEventHolder();
return event;
}
else
{
auto event = m_event_pool.front();
m_event_pool.pop();
return event;
}
}
void CalcIntersectionDevice::ReleaseEventHolder(CalcEventHolder* e) const
{
m_event_pool.push(e);
}
}