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.
|
- #pragma once
- #include <gtest/gtest.h>
-
- #include "megdnn/handle.h"
- #include "test/cpu/fixture.h"
-
- #include <memory>
-
- namespace megdnn {
- namespace test {
-
- class X86 : public CPU {
- public:
- void TearDown() override;
-
- Handle* fallback_handle();
-
- private:
- std::unique_ptr<Handle> m_handle, m_fallback_handle;
- };
-
- class X86_MULTI_THREADS : public CPU_MULTI_THREADS {};
-
- class X86_BENCHMARK_MULTI_THREADS : public CPU_BENCHMARK_MULTI_THREADS {};
-
- } // namespace test
- } // namespace megdnn
-
- // vim: syntax=cpp.doxygen
|