av1_convolve_ x,y _avx2() -- use 256 bit load/store
[aom.git] / test / av1_fht8x16_test.cc
blobc7e6160a26768323f3f231431bd9f1956a73c15c
1 /*
2 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
4 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
11 #include "third_party/googletest/src/googletest/include/gtest/gtest.h"
13 #include "./aom_dsp_rtcd.h"
14 #include "./av1_rtcd.h"
16 #include "aom_ports/mem.h"
17 #include "test/acm_random.h"
18 #include "test/clear_system_state.h"
19 #include "test/register_state_check.h"
20 #include "test/transform_test_base.h"
21 #include "test/util.h"
23 using libaom_test::ACMRandom;
25 #if !CONFIG_DAALA_TX
26 namespace {
27 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
28 const TxfmParam *txfm_param);
29 using std::tr1::tuple;
30 using libaom_test::FhtFunc;
31 typedef tuple<FhtFunc, IhtFunc, TX_TYPE, aom_bit_depth_t, int> Ht8x16Param;
33 void fht8x16_ref(const int16_t *in, tran_low_t *out, int stride,
34 TxfmParam *txfm_param) {
35 av1_fht8x16_c(in, out, stride, txfm_param);
38 void iht8x16_ref(const tran_low_t *in, uint8_t *out, int stride,
39 const TxfmParam *txfm_param) {
40 av1_iht8x16_128_add_c(in, out, stride, txfm_param);
43 class AV1Trans8x16HT : public libaom_test::TransformTestBase,
44 public ::testing::TestWithParam<Ht8x16Param> {
45 public:
46 virtual ~AV1Trans8x16HT() {}
48 virtual void SetUp() {
49 fwd_txfm_ = GET_PARAM(0);
50 inv_txfm_ = GET_PARAM(1);
51 pitch_ = 8;
52 height_ = 16;
53 inv_txfm_ref = iht8x16_ref;
54 fwd_txfm_ref = fht8x16_ref;
55 bit_depth_ = GET_PARAM(3);
56 mask_ = (1 << bit_depth_) - 1;
57 num_coeffs_ = GET_PARAM(4);
58 txfm_param_.tx_type = GET_PARAM(2);
60 virtual void TearDown() { libaom_test::ClearSystemState(); }
62 protected:
63 void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) {
64 fwd_txfm_(in, out, stride, &txfm_param_);
67 void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) {
68 inv_txfm_(out, dst, stride, &txfm_param_);
71 FhtFunc fwd_txfm_;
72 IhtFunc inv_txfm_;
75 TEST_P(AV1Trans8x16HT, AccuracyCheck) { RunAccuracyCheck(1, 0.001); }
76 TEST_P(AV1Trans8x16HT, MemCheck) { RunMemCheck(); }
77 TEST_P(AV1Trans8x16HT, CoeffCheck) { RunCoeffCheck(); }
78 TEST_P(AV1Trans8x16HT, InvCoeffCheck) { RunInvCoeffCheck(); }
79 TEST_P(AV1Trans8x16HT, InvAccuracyCheck) { RunInvAccuracyCheck(1); }
81 using std::tr1::make_tuple;
83 const Ht8x16Param kArrayHt8x16Param_c[] = {
84 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, DCT_DCT, AOM_BITS_8, 128),
85 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, ADST_DCT, AOM_BITS_8, 128),
86 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, DCT_ADST, AOM_BITS_8, 128),
87 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, ADST_ADST, AOM_BITS_8,
88 128),
89 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, FLIPADST_DCT, AOM_BITS_8,
90 128),
91 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, DCT_FLIPADST, AOM_BITS_8,
92 128),
93 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, FLIPADST_FLIPADST,
94 AOM_BITS_8, 128),
95 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, ADST_FLIPADST, AOM_BITS_8,
96 128),
97 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, FLIPADST_ADST, AOM_BITS_8,
98 128),
99 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, IDTX, AOM_BITS_8, 128),
100 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, V_DCT, AOM_BITS_8, 128),
101 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, H_DCT, AOM_BITS_8, 128),
102 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, V_ADST, AOM_BITS_8, 128),
103 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, H_ADST, AOM_BITS_8, 128),
104 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, V_FLIPADST, AOM_BITS_8,
105 128),
106 make_tuple(&av1_fht8x16_c, &av1_iht8x16_128_add_c, H_FLIPADST, AOM_BITS_8,
107 128)
109 INSTANTIATE_TEST_CASE_P(C, AV1Trans8x16HT,
110 ::testing::ValuesIn(kArrayHt8x16Param_c));
112 #if HAVE_SSE2
113 const Ht8x16Param kArrayHt8x16Param_sse2[] = {
114 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, DCT_DCT, AOM_BITS_8,
115 128),
116 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, ADST_DCT, AOM_BITS_8,
117 128),
118 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, DCT_ADST, AOM_BITS_8,
119 128),
120 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, ADST_ADST,
121 AOM_BITS_8, 128),
122 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, FLIPADST_DCT,
123 AOM_BITS_8, 128),
124 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, DCT_FLIPADST,
125 AOM_BITS_8, 128),
126 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, FLIPADST_FLIPADST,
127 AOM_BITS_8, 128),
128 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, ADST_FLIPADST,
129 AOM_BITS_8, 128),
130 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, FLIPADST_ADST,
131 AOM_BITS_8, 128),
132 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, IDTX, AOM_BITS_8,
133 128),
134 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, V_DCT, AOM_BITS_8,
135 128),
136 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, H_DCT, AOM_BITS_8,
137 128),
138 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, V_ADST, AOM_BITS_8,
139 128),
140 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, H_ADST, AOM_BITS_8,
141 128),
142 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, V_FLIPADST,
143 AOM_BITS_8, 128),
144 make_tuple(&av1_fht8x16_sse2, &av1_iht8x16_128_add_sse2, H_FLIPADST,
145 AOM_BITS_8, 128)
147 INSTANTIATE_TEST_CASE_P(SSE2, AV1Trans8x16HT,
148 ::testing::ValuesIn(kArrayHt8x16Param_sse2));
149 #endif // HAVE_SSE2
151 } // namespace
152 #endif // !CONFIG_DAALA_TX