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

Method call_func

src/client/clfunc_xtrmm.hpp:499–514  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

497
498template<>
499void
500xTrmm<cl_float>::
501call_func()
502{
503 timer.Start(timer_id);
504
505 clblasStrmm(order_, buffer_.side_, buffer_.uplo_,
506 buffer_.trans_a_, buffer_.diag_,
507 buffer_.m_, buffer_.n_, buffer_.alpha_,
508 buffer_.buf_a_, buffer_.offA_, buffer_.lda_,
509 buffer_.buf_b_, buffer_.offB_, buffer_.ldb_,
510 numQueues, queues_, 0, NULL, &event_);
511
512 clWaitForEvents(1, &event_);
513 timer.Stop(timer_id);
514}
515
516template<>
517void

Callers

nothing calls this directly

Calls 6

clblasStrmmFunction · 0.85
clblasDtrmmFunction · 0.85
clblasCtrmmFunction · 0.85
clblasZtrmmFunction · 0.85
StartMethod · 0.80
StopMethod · 0.80

Tested by

no test coverage detected