Skip to content

Conversation

@evanmcclure
Copy link
Collaborator

No description provided.

//
// The dimensions of the input matrices and the resultant matrix are
// implicitly the same.
void nn_dot_product_matrix(float result[MATRIX_MAX_ROWS][MATRIX_MAX_COLS], const float a[MATRIX_MAX_ROWS][MATRIX_MAX_COLS], const float b[MATRIX_MAX_ROWS][MATRIX_MAX_COLS]);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See my previous comment.

Comment on lines 18 to 20
for (int i = 0; i < NN_MATRIX_MAX_ROWS; i++) {
for (int j = 0; j < NN_MATRIX_MAX_COLS; j++) {
for (int k = 0; k < NN_MATRIX_MAX_ROWS; k++) {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should use the size arguments

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants