/* Copyright (C) 2021 Daniel Schultz This file is part of FLINT. FLINT is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. See . */ #include "nmod_mat.h" void nmod_mat_nmod_vec_mul_ptr( mp_limb_t * const * c, const mp_limb_t * const * a, slong alen, const nmod_mat_t B) { slong i; slong len = FLINT_MIN(B->r, alen); slong ncols = B->c; mp_limb_t * aa, * cc; TMP_INIT; TMP_START; aa = TMP_ARRAY_ALLOC(len, mp_limb_t); cc = TMP_ARRAY_ALLOC(ncols, mp_limb_t); for (i = 0; i < len; i++) aa[i] = a[i][0]; nmod_mat_nmod_vec_mul(cc, aa, len, B); for (i = 0; i < ncols; i++) c[i][0] = cc[i]; TMP_END; }