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.

onnx.cmake 411 B

12345678910111213
  1. if(ENABLE_GITEE)
  2. set(REQ_URL "https://gitee.com/mirrors/ONNX/repository/archive/v1.6.0.tar.gz")
  3. set(MD5 "1bdbcecdd68ea8392630467646776e02")
  4. else()
  5. set(REQ_URL "https://github.com/onnx/onnx/releases/download/v1.6.0/onnx-1.6.0.tar.gz")
  6. set(MD5 "512f2779d6215d4a36f366b6b9acdf1e")
  7. endif()
  8. mindspore_add_pkg(ms_onnx
  9. VER 1.6.0
  10. HEAD_ONLY ./
  11. URL ${REQ_URL}
  12. MD5 ${MD5})