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

Method call_func

src/client/clfunc_xtrmv.hpp:259–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

257
258template<>
259void
260xTrmv<cl_float>::
261call_func()
262{
263 timer.Start(timer_id);
264 clblasStrmv(order_, buffer_.uplo_, buffer_.trans_a_,
265 buffer_.diag_, buffer_.m_, buffer_.buf_a_, 0,
266 buffer_.lda_, buffer_.buf_x_, 0, 1, buffer_.scratch_,
267 numQueues, queues_, 0, NULL, &event_);
268 clWaitForEvents(1, &event_);
269 timer.Stop(timer_id);
270}
271
272template<>
273void

Callers

nothing calls this directly

Calls 6

clblasStrmvFunction · 0.85
clblasDtrmvFunction · 0.85
clblasCtrmvFunction · 0.85
clblasZtrmvFunction · 0.85
StartMethod · 0.80
StopMethod · 0.80

Tested by

no test coverage detected