Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
b466ad5e
Commit
b466ad5e
authored
May 08, 2014
by
Jingning Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Turn on unit tests for SSSE3 8x8 forward and inverse 2D-DCT
Change-Id: I3edd4b956a1273d65547771bf43c5cdaea25e5d6
parent
41a350a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
test/fdct8x8_test.cc
test/fdct8x8_test.cc
+7
-0
test/partial_idct_test.cc
test/partial_idct_test.cc
+9
-0
No files found.
test/fdct8x8_test.cc
View file @
b466ad5e
...
...
@@ -340,4 +340,11 @@ INSTANTIATE_TEST_CASE_P(
make_tuple
(
&
vp9_fht8x8_sse2
,
&
vp9_iht8x8_64_add_sse2
,
2
),
make_tuple
(
&
vp9_fht8x8_sse2
,
&
vp9_iht8x8_64_add_sse2
,
3
)));
#endif
#if HAVE_SSSE3 && ARCH_X86_64
INSTANTIATE_TEST_CASE_P
(
SSSE3
,
FwdTrans8x8DCT
,
::
testing
::
Values
(
make_tuple
(
&
vp9_fdct8x8_ssse3
,
&
vp9_idct8x8_64_add_ssse3
,
0
)));
#endif
}
// namespace
test/partial_idct_test.cc
View file @
b466ad5e
...
...
@@ -190,4 +190,13 @@ INSTANTIATE_TEST_CASE_P(
&
vp9_idct4x4_1_add_sse2
,
TX_4X4
,
1
)));
#endif
#if HAVE_SSSE3 && ARCH_X86_64
INSTANTIATE_TEST_CASE_P
(
SSSE3
,
PartialIDctTest
,
::
testing
::
Values
(
make_tuple
(
&
vp9_idct8x8_64_add_c
,
&
vp9_idct8x8_12_add_ssse3
,
TX_8X8
,
12
)));
#endif
}
// namespace
Write
Preview
Markdown
is supported
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