Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
8f71e396
Commit
8f71e396
authored
Sep 20, 2016
by
Sarah Parker
Committed by
Gerrit Code Review
Sep 20, 2016
Browse files
Merge "Fix naming mistake in multiply_mat" into nextgenv2
parents
3e457ba1
8f90d8b5
Changes
1
Show whitespace changes
Inline
Side-by-side
av1/encoder/ransac.c
View file @
8f71e396
...
...
@@ -56,7 +56,7 @@ static void multiply_mat(const double *m1, const double *m2, double *res,
for
(
col
=
0
;
col
<
m2_cols
;
++
col
)
{
sum
=
0
;
for
(
inner
=
0
;
inner
<
inner_dim
;
++
inner
)
sum
+=
m1
[
row
*
m1_rows
+
inner
]
*
m2
[
inner
*
m2_cols
+
col
];
sum
+=
m1
[
row
*
inner_dim
+
inner
]
*
m2
[
inner
*
m2_cols
+
col
];
*
(
res
++
)
=
sum
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment