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

Method call_func

src/client/clfunc_xgemv.hpp:310–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308
309template<>
310void
311xGemv<float>::
312call_func()
313{
314 timer.Start(timer_id);
315
316 clblasSgemv(order_, buffer_.trans_a_, buffer_.m_, buffer_.n_,
317 buffer_.alpha_, buffer_.buf_a_, buffer_.offA_,
318 buffer_.lda_, buffer_.buf_x_, 0, 1, buffer_.beta_,
319 buffer_.buf_y_, 0, 1, numQueues, queues_, 0, NULL, &event_);
320
321 clWaitForEvents(1, &event_);
322 timer.Stop(timer_id);
323}
324
325template<>
326void

Callers

nothing calls this directly

Calls 6

clblasSgemvFunction · 0.85
clblasDgemvFunction · 0.85
clblasCgemvFunction · 0.85
clblasZgemvFunction · 0.85
StartMethod · 0.80
StopMethod · 0.80

Tested by

no test coverage detected