1*5aed82e4SJeremy L Thompson // Copyright (c) 2017-2024, 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 7940a72f1SSebastian Grimberg 8940a72f1SSebastian Grimberg #ifndef CEED_MAGMA_GEMM_NONTENSOR_H 9940a72f1SSebastian Grimberg #define CEED_MAGMA_GEMM_NONTENSOR_H 10940a72f1SSebastian Grimberg 11940a72f1SSebastian Grimberg #include "ceed-magma.h" 12940a72f1SSebastian Grimberg 13940a72f1SSebastian Grimberg //////////////////////////////////////////////////////////////////////////////// 14940a72f1SSebastian 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, 15940a72f1SSebastian Grimberg const CeedScalar *d_A, magma_int_t ldda, const CeedScalar *d_B, magma_int_t lddb, CeedScalar beta, 16940a72f1SSebastian Grimberg CeedScalar *d_C, magma_int_t lddc, magma_queue_t queue); 17940a72f1SSebastian Grimberg 18940a72f1SSebastian Grimberg #endif // CEED_MAGMA_GEMM_NONTENSOR_H 19