1. 23 3月, 2023 2 次提交
  2. 20 2月, 2023 1 次提交
  3. 06 1月, 2023 2 次提交
  4. 30 11月, 2022 1 次提交
  5. 16 11月, 2022 1 次提交
  6. 10 11月, 2022 1 次提交
  7. 11 8月, 2022 1 次提交
  8. 04 8月, 2022 1 次提交
  9. 12 7月, 2022 1 次提交
  10. 22 6月, 2022 1 次提交
  11. 17 6月, 2022 1 次提交
  12. 16 6月, 2022 1 次提交
  13. 20 5月, 2022 1 次提交
  14. 11 5月, 2022 1 次提交
  15. 06 5月, 2022 1 次提交
  16. 03 4月, 2022 1 次提交
  17. 01 4月, 2022 1 次提交
  18. 04 3月, 2022 1 次提交
  19. 26 2月, 2022 1 次提交
  20. 18 1月, 2022 1 次提交
  21. 07 1月, 2022 1 次提交
  22. 06 1月, 2022 1 次提交
  23. 27 12月, 2021 1 次提交
  24. 16 12月, 2021 2 次提交
  25. 26 11月, 2021 2 次提交
  26. 25 11月, 2021 1 次提交
  27. 15 11月, 2021 2 次提交
  28. 05 11月, 2021 1 次提交
  29. 03 11月, 2021 1 次提交
    • M
      feat(whl/api/lar): enable megengine dll on Windows · 25ec2530
      Megvii Engine Team 提交于
      1: reduce python whl package size
      2: unify api link logic on all OS
      3: add option: MGE_WINDOWS_BUILD_WITH_STATIC_CRT
          --- default OFF
          --- if build CRT(vc runtime) with STATIC with megengine.dll
              some CRT api will crash, for example, flush, so if you
              build with static megengine, and do not want to install CRT
              you can set MGE_WINDOWS_BUILD_WITH_STATIC_CRT TRUE
          --- how to install CRT:
              https://docs.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-160
              install VC_redist.x64.exe
      4: rename megengine_export to megengine_shared(only export needed symbols ),
         caused by runtime symbols conflict with pytorch
      
      GitOrigin-RevId: 93d8d80f29dcf03c00b18e8b708b26df9232e3df
      25ec2530
  30. 12 10月, 2021 1 次提交
  31. 11 10月, 2021 1 次提交
  32. 24 9月, 2021 1 次提交
    • M
      fix(cmake/bazel/clang): remove finite-math-only opt from Ofast, · 5e345043
      Megvii Engine Team 提交于
      for keep same build between gcc and clang
      
      more detail:
      ```
       printf("%d\n", std::isnan(std::numeric_limits<float>::quiet_NaN()));
       printf("%d\n", std::isnan(std::nan("1")));
      ```
      
      linux-clang and android-NDK clang have diff build logic with gcc and
      macos/windows clang/clangcl
      * clang++-12 -Ofast 1.cc
      output is:
      0
      0
      
      * clang++-12 -Ofast 1.cc -fno-finite-math-only
      output is:
      1
      1
      
      * g++ -Ofast 1.cc
      output is:
      1
      1
      
      GitOrigin-RevId: f0622e2ca019b0072fd6798990a8aba156c8022f
      5e345043
  33. 17 9月, 2021 1 次提交
  34. 15 9月, 2021 1 次提交
  35. 11 9月, 2021 1 次提交