You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

fixture.h 445 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include <gtest/gtest.h>
  3. #include "megdnn/handle.h"
  4. #include "test/arm_common/fixture.h"
  5. #include <memory>
  6. namespace megdnn {
  7. namespace test {
  8. class AARCH64 : public ARM_COMMON {
  9. public:
  10. Handle* fallback_handle();
  11. private:
  12. std::unique_ptr<Handle> m_handle, m_fallback_handle;
  13. };
  14. class AARCH64_MULTI_THREADS : public ARM_COMMON_MULTI_THREADS {};
  15. } // namespace test
  16. } // namespace megdnn
  17. // vim: syntax=cpp.doxygen