[math] Generic dense matrix implementation using BLAS calls for matrix-matrix multiplication if available

This commit is contained in:
Al
2016-08-06 00:40:01 -04:00
parent d4a792f33c
commit 46cd725c13
19 changed files with 469 additions and 425 deletions

View File

@@ -23,7 +23,7 @@ inline void softmax_vector(double *x, size_t n) {
}
void softmax_matrix(matrix_t *matrix) {
void softmax_matrix(double_matrix_t *matrix) {
size_t num_rows = matrix->m;
size_t num_cols = matrix->n;