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 "test/common/fix_gtest_on_platforms_without_exception.inl"
-
- #include "megcore_cdefs.h"
- #include "megdnn/handle.h"
-
- #include <memory>
-
- namespace megdnn {
- namespace test {
-
- class CUDA : public ::testing::Test {
- public:
- void SetUp() override;
- void TearDown() override;
-
- Handle* handle_cuda() { return m_handle_cuda.get(); }
- Handle* handle_naive();
-
- private:
- std::unique_ptr<Handle> m_handle_naive;
- std::unique_ptr<Handle> m_handle_cuda;
- };
-
- //! cuda test fixture with AsyncErrorInfo
- class CUDA_ERROR_INFO : public ::testing::Test {
- public:
- void SetUp() override;
- void TearDown() override;
-
- Handle* handle_cuda() { return m_handle_cuda.get(); }
-
- megcore::AsyncErrorInfo get_error_info();
-
- private:
- megcore::AsyncErrorInfo* m_error_info_dev;
- std::unique_ptr<Handle> m_handle_cuda;
- };
-
- } // namespace test
- } // namespace megdnn
-
- // vim: syntax=cpp.doxygen
|