xref: /libCEED/backends/magma/ceed-magma-gemm-nontensor.h (revision d4cc18453651bd0f94c1a2e078b2646a92dafdcc)
1*9ba83ac0SJeremy L Thompson // Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors.
2940a72f1SSebastian Grimberg // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3940a72f1SSebastian Grimberg //
4940a72f1SSebastian Grimberg // SPDX-License-Identifier: BSD-2-Clause
5940a72f1SSebastian Grimberg //
6940a72f1SSebastian Grimberg // This file is part of CEED:  http://github.com/ceed
7509d4af6SJeremy L Thompson #pragma once
8940a72f1SSebastian Grimberg 
9940a72f1SSebastian Grimberg #include "ceed-magma.h"
10940a72f1SSebastian Grimberg 
11940a72f1SSebastian Grimberg ////////////////////////////////////////////////////////////////////////////////
12940a72f1SSebastian Grimberg CEED_INTERN int magma_gemm_nontensor(magma_trans_t trans_A, magma_trans_t trans_B, magma_int_t m, magma_int_t n, magma_int_t k, CeedScalar alpha,
13940a72f1SSebastian Grimberg                                      const CeedScalar *d_A, magma_int_t ldda, const CeedScalar *d_B, magma_int_t lddb, CeedScalar beta,
14940a72f1SSebastian Grimberg                                      CeedScalar *d_C, magma_int_t lddc, magma_queue_t queue);
15