Changeset 1f13e29 for src/fmat.h
- Timestamp:
- Dec 29, 2021, 5:51:47 PM (3 years ago)
- Branches:
- feature/cnn, feature/crepe
- Children:
- a33c395
- Parents:
- 70afae1
- git-author:
- Paul Brossier <piem@piem.org> (01/07/19 23:11:28)
- git-committer:
- Paul Brossier <piem@piem.org> (12/29/21 17:51:47)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fmat.h
r70afae1 r1f13e29 161 161 \param s matrix to compute product with 162 162 \param scale vector to compute product with 163 \param output vector to store restults in 163 \param output vector of results 164 164 165 165 166 */ 166 167 void fmat_vecmul(const fmat_t *s, const fvec_t *scale, fvec_t *output); 168 169 /** compute the product of a vector by a matrix 170 171 \param s matrix to compute product with 172 \param scale input to compute product with 173 \param output vector of results 174 175 */ 176 void fvec_matmul(const fvec_t *scale, const fmat_t *s, fvec_t *output); 167 177 168 178 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.