- 26 4月, 2023 1 次提交
-
-
由 Qsingle 提交于
update the guide for the whole process;resolve conflict; resolve conflict;update add table
-
- 23 3月, 2023 1 次提交
-
-
由 Megvii Engine Team 提交于
-
- 14 1月, 2023 1 次提交
-
-
由 Megvii Engine Team 提交于
-
- 26 11月, 2022 1 次提交
-
-
由 Megvii Engine Team 提交于
-
- 09 10月, 2022 1 次提交
-
-
由 Megvii Engine Team 提交于
-
- 17 9月, 2022 1 次提交
-
-
由 Megvii Engine Team 提交于
-
- 05 7月, 2022 1 次提交
-
-
由 huangxinda 提交于
-
- 04 7月, 2022 1 次提交
-
-
由 huangxinda 提交于
-
- 01 7月, 2022 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 9b18a57893fd7059a29edc11fc04c14d8176e547
-
- 30 6月, 2022 1 次提交
-
-
由 huangxinda 提交于
-
- 24 6月, 2022 1 次提交
-
-
由 huangxinda 提交于
-
- 13 6月, 2022 1 次提交
-
-
由 huangxinda 提交于
-
- 24 5月, 2022 1 次提交
-
-
由 huangxinda 提交于
-
- 03 4月, 2022 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 5983e1e246ef0baa7e0691dd6de1abca7771da7f
-
- 24 3月, 2022 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: c67b808121ac15aafa5c040e329c046ccb2092f6
-
- 22 3月, 2022 1 次提交
-
-
由 zhanghaolong 提交于
-
- 27 2月, 2022 1 次提交
-
-
由 megvii-mge 提交于
-
- 21 12月, 2021 3 次提交
-
-
由 huangxinda 提交于
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 0d1d54f856507a449be3a4762490492f26ddb380
-
由 huangxinda 提交于
-
- 15 11月, 2021 2 次提交
-
-
由 huangxinda 提交于
-
由 huangxinda 提交于
-
- 27 10月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 71446b3c97c975ee9054363a42c079941563ebf0
-
- 26 10月, 2021 1 次提交
-
-
由 yeasoon 提交于
-
- 01 9月, 2021 2 次提交
-
-
由 huangxinda 提交于
-
由 zhanghaolong 提交于
-
- 31 8月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 1c3a823b64fcac901f6e406ac9e45d89702ce1a6
-
- 24 8月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: d54681f0c099a60e816a085ce77084b8957b0592
-
- 18 8月, 2021 5 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: b7b35524bf17487764584e112f5d251485a41aef extra-info: 141eca708240c572a4bf24b4ea8d7246d26e2655
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 59e92d25bfdea75b6963653a72c41ea87079add8
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 04e89c28e76fb8690627d1458d347f0a7b797d29
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 5f38118f4e249793bcdc1d8c8ad4b13705db45ac
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: b2a0660e65420c2a2a97ae6572dd58d44d8ffafd
-
- 12 8月, 2021 1 次提交
-
-
由 huangxinda 提交于
-
- 11 8月, 2021 1 次提交
-
-
由 Xinda Huang 提交于
-
- 07 8月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
(os vesion >= sp2) build with cmake * cmake build support(xp sp2): (dbg)EXTRA_CMAKE_ARGS="-DMGE_DEPLOY_INFERENCE_ON_WINDOWS_XP_SP2=ON" ./scripts/cmake-build/host_build.sh -m -d (opt)EXTRA_CMAKE_ARGS="-DMGE_DEPLOY_INFERENCE_ON_WINDOWS_XP_SP2=ON" ./scripts/cmake-build/host_build.sh -m * cmake build support(xp sp3): (dbg)EXTRA_CMAKE_ARGS="-DMGE_DEPLOY_INFERENCE_ON_WINDOWS_XP=ON" ./scripts/cmake-build/host_build.sh -m -d (opt)EXTRA_CMAKE_ARGS="-DMGE_DEPLOY_INFERENCE_ON_WINDOWS_XP=ON" ./scripts/cmake-build/host_build.sh -m * internal behavior: will define MGB_HAVE_THREAD=0 when enable -DMGE_DEPLOY_INFERENCE_ON_WINDOWS_XP_SP2=ON * refer to https://docs.microsoft.com/en-us/cpp/build/configuring-programs-for-windows-xp?view=msvc-160 xp sp2(x86) do not support vc runtime fully, casused by KERNEL32.dll do not implement some base apis for c++ std function, for example, std::mutex/std::thread/std::condition_variable as a workround, we will disable some MegEngine features on xp sp2 env, for exampe, multi-thread etc! * about DNN_MUTEX/MGB_MUTEX/LITE_MUTEX, if your code will build in inference code (even CPU backends), please replace std::mutex to DNN_MUTEX/MGB_MUTEX, * about multi-thread, if you code need multi-thread support, please enable it when MGB_HAVE_THREAD=1 * about test build env status 1: Visual Studio 2019(MSVC version <= 14.26.28801)---- pass 2: Visual Studio 2019(MSVC version > 14.26.28801) ---- failed caused by this 'new' version will put VCR depends on win7 KERNEL32.DLL, this may be fixed at Visual Studio 2019 later version but we do not test at this MR merge point 3: Visual Studio 2017 ---------- pass 4: Visual Studio 2014 ---------- pass GitOrigin-RevId: ea6e1f8b4fea9aa03594e3af8d59708b4cdf7bdc
-
- 27 7月, 2021 2 次提交
-
-
由 XindaH 提交于
-
由 konghuanjun 提交于
-
- 23 7月, 2021 2 次提交
-
-
由 huangxinda 提交于
-
由 huangxinda 提交于
-