Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pghysels/STRUMPACK
Browse files Browse the repository at this point in the history
  • Loading branch information
pghysels committed Jun 27, 2024
2 parents aa8a6ce + b6415ac commit b8e8401
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dense/SYCLWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,8 @@ namespace strumpack {
(get_sycl_queue(handle), T2MKLOp(ta), T2MKLOp(tb), c.rows(), c.cols(),
(ta==Trans::N) ? a.cols() : a.rows(), alpha, a.data(), a.ld(),
b.data(), b.ld(), beta, c.data(), c.ld());
STRUMPACK_FLOPS((is_complex<scalar_t>()?4:1)*blas::gemm_flops(c.rows(),c.cols(),(ta==Trans::N)?a.cols():a.rows(),alpha,beta));
STRUMPACK_BYTES(sizeof(scalar_t)*blas::gemm_moves(c.rows(),c.cols(),(ta==Trans::N)?a.cols():a.rows()));
}
template void gemm(Handle&, Trans, Trans, float, const DenseMatrix<float>&,
const DenseMatrix<float>&, float, DenseMatrix<float>&);
Expand Down

0 comments on commit b8e8401

Please sign in to comment.