1 // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. 2 // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 3 // 4 // SPDX-License-Identifier: BSD-2-Clause 5 // 6 // This file is part of CEED: http://github.com/ceed 7 8 #ifndef CEED_MAGMA_GEMM_NONTENSOR_H 9 #define CEED_MAGMA_GEMM_NONTENSOR_H 10 11 #include "ceed-magma.h" 12 13 //////////////////////////////////////////////////////////////////////////////// 14 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, 15 const CeedScalar *d_A, magma_int_t ldda, const CeedScalar *d_B, magma_int_t lddb, CeedScalar beta, 16 CeedScalar *d_C, magma_int_t lddc, magma_queue_t queue); 17 18 #endif // CEED_MAGMA_GEMM_NONTENSOR_H 19