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.

cpuinfo_arch_vendor.h 318 B

123456789101112131415
  1. #pragma once
  2. #include "src/common/utils.h"
  3. #if defined(MGB_ENABLE_CPUINFO_CHECK) && MGB_ENABLE_CPUINFO
  4. #include <cpuinfo.h>
  5. namespace megdnn {
  6. const char* vendor_to_string(enum cpuinfo_vendor vendor);
  7. const char* uarch_to_string(enum cpuinfo_uarch uarch);
  8. } // namespace megdnn
  9. #endif
  10. // vim: syntax=cpp.doxygen