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

Method call_func

src/client/clfunc_xsymv.hpp:231–244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229
230template<>
231void
232xSymv<float>::
233call_func()
234{
235 timer.Start(timer_id);
236
237 clblasSsymv(order_, buffer_.uplo_, buffer_.n_, buffer_.alpha_,
238 buffer_.buf_a_, buffer_.offA_, buffer_.lda_,
239 buffer_.buf_x_, 0, 1, buffer_.beta_, buffer_.buf_y_,
240 0, 1, numQueues, queues_, 0, NULL, &event_);
241
242 clWaitForEvents(1, &event_);
243 timer.Stop(timer_id);
244}
245
246template<>
247void

Callers

nothing calls this directly

Calls 4

clblasSsymvFunction · 0.85
clblasDsymvFunction · 0.85
StartMethod · 0.80
StopMethod · 0.80

Tested by

no test coverage detected