MCPcopy Create free account
hub / github.com/RenderKit/oidn / submit

Method submit

core/op.cpp:6–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include "op.h"
5
6OIDN_NAMESPACE_BEGIN
7
8 void BaseOp::submit(const Ref<Progress>& progress)
9 {
10 Engine* engine = nullptr;
11
12 if (progress)
13 {
14 engine = getEngine();
15 Progress::submitUpdate(engine, progress);
16 }
17
18 submitKernels(progress);
19
20 if (progress)
21 Progress::submitUpdate(engine, progress, getWorkAmount());
22 }
23
24OIDN_NAMESPACE_END

Callers 3

submitHostFuncMethod · 0.45
submitBarrierMethod · 0.45
executeMethod · 0.45

Calls 3

submitKernelsFunction · 0.85
getEngineFunction · 0.70
getWorkAmountFunction · 0.70

Tested by

no test coverage detected