MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / setSVMPointersHelper

Method setSVMPointersHelper

include/CL/opencl.hpp:5962–5966  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5960
5961 template<int index, int ArrayLength, class D, typename T0, typename T1, typename... Ts>
5962 void setSVMPointersHelper(std::array<void*, ArrayLength> &pointerList, const pointer<T0, D> &t0, const pointer<T1, D> &t1, Ts & ... ts)
5963 {
5964 pointerList[index] = static_cast<void*>(t0.get());
5965 setSVMPointersHelper<index + 1, ArrayLength>(pointerList, t1, ts...);
5966 }
5967
5968 template<int index, int ArrayLength, typename T0, typename T1, typename... Ts>
5969 typename std::enable_if<std::is_pointer<T0>::value, void>::type

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected