av1_convolve_ x,y _avx2() -- use 256 bit load/store
[aom.git] / test / clear_system_state.h
blob4f3c1eed0774301aeb586fc1258cbc53d87d7885
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 #ifndef TEST_CLEAR_SYSTEM_STATE_H_
12 #define TEST_CLEAR_SYSTEM_STATE_H_
14 #include "./aom_config.h"
15 #if ARCH_X86 || ARCH_X86_64
16 #include "aom_ports/x86.h"
17 #endif
19 namespace libaom_test {
21 // Reset system to a known state. This function should be used for all non-API
22 // test cases.
23 inline void ClearSystemState() {
24 #if ARCH_X86 || ARCH_X86_64
25 aom_reset_mmx_state();
26 #endif
29 } // namespace libaom_test
30 #endif // TEST_CLEAR_SYSTEM_STATE_H_