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.

comparator.h 268 B

1234567891011121314151617
  1. #pragma once
  2. namespace megdnn {
  3. namespace test {
  4. template <typename T>
  5. class DefaultComparator {
  6. public:
  7. bool is_same(T expected, T actual) const;
  8. };
  9. } // namespace test
  10. } // namespace megdnn
  11. #include "test/common/comparator.inl"
  12. // vim: syntax=cpp.doxygen