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