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.cpp 415 B

12345678910111213141516171819
  1. #include "test/aarch64/fixture.h"
  2. #include "test/common/memory_manager.h"
  3. #include "test/common/random_state.h"
  4. #include "test/common/utils.h"
  5. namespace megdnn {
  6. namespace test {
  7. Handle* AARCH64::fallback_handle() {
  8. if (!m_fallback_handle) {
  9. m_fallback_handle = create_cpu_handle(1);
  10. }
  11. return m_fallback_handle.get();
  12. }
  13. } // namespace test
  14. } // namespace megdnn
  15. // vim: syntax=cpp.doxygen