MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / call_func

Method call_func

src/client/clfunc_xhemv.hpp:227–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225
226template <>
227void xHemv<cl_float2>::call_func()
228{
229 timer.Start(timer_id);
230 clblasChemv(buffer.order, buffer.uplo, buffer.N, buffer.alpha, buffer.A,
231 buffer.offa, buffer.lda, buffer.X, buffer.offx, buffer.incx,
232 buffer.beta, buffer.Y, buffer.offy, buffer.incy, numQueues, queues_, 0, NULL,&event_);
233 clWaitForEvents(1, &event_);
234 timer.Stop(timer_id);
235}
236
237template <>
238void xHemv<cl_double2>::call_func()

Callers

nothing calls this directly

Calls 4

clblasChemvFunction · 0.85
clblasZhemvFunction · 0.85
StartMethod · 0.80
StopMethod · 0.80

Tested by

no test coverage detected