MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / launch

Method launch

src/targets/gpu/kernel.cpp:131–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131void kernel::launch(hipStream_t stream,
132 std::size_t global,
133 std::size_t local,
134 pointers args,
135 hipEvent_t start,
136 hipEvent_t stop) const
137{
138 assert(impl != nullptr);
139 void* kernargs = reinterpret_cast<void*>(args.data());
140 std::size_t size = args.bytes();
141
142 launch_kernel(impl->fun, stream, global, local, kernargs, size, start, stop);
143}
144
145void kernel::launch(hipStream_t stream,
146 std::size_t global,

Callers 9

TEST_CASEFunction · 0.80
TEST_CASEFunction · 0.80
runMethod · 0.80
computeMethod · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls 5

launch_kernelFunction · 0.85
pack_argsFunction · 0.85
dataMethod · 0.45
bytesMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected