diff options
Diffstat (limited to 'src/dsp/intrapred_directional_test.cc')
-rw-r--r-- | src/dsp/intrapred_directional_test.cc | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/src/dsp/intrapred_directional_test.cc b/src/dsp/intrapred_directional_test.cc index ebf9da0..9e98242 100644 --- a/src/dsp/intrapred_directional_test.cc +++ b/src/dsp/intrapred_directional_test.cc @@ -28,6 +28,7 @@ #include "src/dsp/constants.h" #include "src/dsp/dsp.h" #include "src/utils/common.h" +#include "src/utils/compiler_attributes.h" #include "src/utils/constants.h" #include "src/utils/cpu.h" #include "src/utils/memory.h" @@ -79,6 +80,12 @@ class IntraPredTestBase : public testing::TestWithParam<TransformSize>, struct IntraPredMem { void Reset(libvpx_test::ACMRandom* rnd) { ASSERT_NE(rnd, nullptr); +#if LIBGAV1_MSAN + // Match the behavior of Tile::IntraPrediction to prevent warnings due to + // assembly code (safely) overreading to fill a register. + memset(left_mem, 0, sizeof(left_mem)); + memset(top_mem, 0, sizeof(top_mem)); +#endif // LIBGAV1_MSAN Pixel* const left = left_mem + 16; Pixel* const top = top_mem + 16; const int mask = (1 << bitdepth) - 1; @@ -105,6 +112,12 @@ class IntraPredTestBase : public testing::TestWithParam<TransformSize>, // Set ref_src, top-left, top and left to |pixel|. void Set(const Pixel pixel) { +#if LIBGAV1_MSAN + // Match the behavior of Tile::IntraPrediction to prevent warnings due to + // assembly code (safely) overreading to fill a register. + memset(left_mem, 0, sizeof(left_mem)); + memset(top_mem, 0, sizeof(top_mem)); +#endif // LIBGAV1_MSAN Pixel* const left = left_mem + 16; Pixel* const top = top_mem + 16; for (auto& r : ref_src) r = pixel; @@ -702,7 +715,11 @@ const char* const* GetDirectionalIntraPredDigests8bpp(TransformSize tx_size) { } TEST_P(DirectionalIntraPredTest8bpp, DISABLED_Speed) { - const auto num_runs = static_cast<int>(5e7 / (block_width_ * block_height_)); +#if LIBGAV1_ENABLE_NEON + const auto num_runs = static_cast<int>(2e7 / (block_width_ * block_height_)); +#else + const int num_runs = static_cast<int>(4e7 / (block_width_ * block_height_)); +#endif for (int i = kZone1; i < kNumZones; ++i) { TestSpeed(GetDirectionalIntraPredDigests8bpp(tx_size_), static_cast<Zone>(i), num_runs); @@ -867,7 +884,11 @@ const char* const* GetDirectionalIntraPredDigests10bpp(TransformSize tx_size) { } TEST_P(DirectionalIntraPredTest10bpp, DISABLED_Speed) { - const auto num_runs = static_cast<int>(5e7 / (block_width_ * block_height_)); +#if LIBGAV1_ENABLE_NEON + const int num_runs = static_cast<int>(2e7 / (block_width_ * block_height_)); +#else + const int num_runs = static_cast<int>(4e7 / (block_width_ * block_height_)); +#endif for (int i = kZone1; i < kNumZones; ++i) { TestSpeed(GetDirectionalIntraPredDigests10bpp(tx_size_), static_cast<Zone>(i), num_runs); @@ -882,6 +903,7 @@ TEST_P(DirectionalIntraPredTest10bpp, FixedInput) { } TEST_P(DirectionalIntraPredTest10bpp, Overflow) { TestSaturatedValues(); } +TEST_P(DirectionalIntraPredTest10bpp, Random) { TestRandomValues(); } #endif // LIBGAV1_MAX_BITDEPTH >= 10 |