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.

version.h 459 B

123456789101112131415161718192021
  1. #pragma once
  2. #define MEGDNN_MAJOR 9
  3. #define MEGDNN_MINOR 3
  4. #define MEGDNN_PATCH 0
  5. #include "megbrain_build_config.h"
  6. #include "megdnn/internal/visibility_prologue.h"
  7. namespace megdnn {
  8. struct Version {
  9. int major, minor, patch;
  10. };
  11. //! get megdnn version of the binary
  12. MGE_WIN_DECLSPEC_FUC Version get_version();
  13. } // namespace megdnn
  14. #include "megdnn/internal/visibility_epilogue.h"
  15. // vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}