1. 25 5月, 2021 3 次提交
  2. 19 4月, 2021 1 次提交
  3. 08 4月, 2021 2 次提交
  4. 29 3月, 2021 1 次提交
  5. 23 3月, 2021 2 次提交
  6. 22 3月, 2021 10 次提交
  7. 23 1月, 2021 1 次提交
    • M
      fix(cmake/whl): reduce wheel size · ae8b38f6
      Megvii Engine Team 提交于
      as some reason: some version of trt/cudnn need
      -Wl,--whole-archive attribute to fix cuda issue,
      target A(CMAKE OBJECT,eg megbrain/megdnn): -Wl,--whole-archive depend on trt/cudnn
      target B(SHARED LIBS,eg libmegengine.so) --> A with `PUBLIC` depends
      target C(SHARED LIBS,eg _impertive.so) --> B with `PUBLIC` depends,
      then ld will force link fatbin section into C, which will be undesired
      
      what`s more, attribute PUBLIC/PRIVATE do not take effect
      to OBJECT library(megbrain/megdnn)
      
      what`s more, megengine/megengine_export have to PUBLIC for
      mgb/imperative target, as SRC/include depends
      
      so we pull cudalib depend from megbrain/megdnn to
      megengine/megengine_export on linux os, to finall
      target at windows os, for example lar on windows
      
      GitOrigin-RevId: b278a69e1cdcc17cfd22da80247af3fe30f6d4e8
      ae8b38f6
  8. 15 1月, 2021 1 次提交
  9. 11 1月, 2021 1 次提交
  10. 13 11月, 2020 2 次提交
  11. 26 10月, 2020 1 次提交
  12. 13 10月, 2020 2 次提交
  13. 17 9月, 2020 4 次提交
  14. 16 9月, 2020 2 次提交
  15. 25 8月, 2020 5 次提交
  16. 05 8月, 2020 2 次提交
    • M
      fix(mge/doc): fix typos, format · 134a1026
      Megvii Engine Team 提交于
      GitOrigin-RevId: 7d8037434ef23aa5bfc768f84a5343e32e1f9a8e
      134a1026
    • M
      fix(cmake/cross-build): misc fix · 14a32ae1
      Megvii Engine Team 提交于
      1: fix cmake cross-ios failed caused by df118a87
         build static lib for APPLE define for XCODE third_party framework including require
      
      2: megbrain_test/megdnn_test build when MGE_INFERENCE_ONLY=ON
         now u can build megbrain_test/megdnn_test by:
         EXTRA_CMAKE_ARGS="-DMGE_WITH_TEST=ON" ./scripts/cmake-build/xxx.sh
         example macos-cross-ios build megdnn_test for IOS by
         EXTRA_CMAKE_ARGS="-DMGE_WITH_TEST=ON" ./scripts/cmake-build/cross_build_ios_arm_inference.sh
      
      3: reuse host flatc build when cross build mode
      GitOrigin-RevId: 132f4bf893567bdb1d54de506449950513a5841f
      14a32ae1