- 11 10月, 2021 1 次提交
-
-
由 泥点无名哥 提交于
-
- 24 9月, 2021 1 次提交
-
-
由 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
-
- 17 9月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: beddcf974576af51da24b34b5d8bba4753a2e4f6
-
- 15 9月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 0b9073acce66bd8d5b6350a732e1b7d8b3605b3c
-
- 11 9月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 492eaf428a1ab1f8c671730af139fa12cedae3f7
-
- 18 8月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: bcd6860e8c8e8cdaaaeae5340284650547fb6a4b
-
- 07 8月, 2021 2 次提交
-
-
由 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
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: ffd6431299b2ae008fbdd1eed6458437e6b6a45f
-
- 19 7月, 2021 4 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 1dd5a02a512b210f2c75afd0062e4bfad1fcdddc
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 6638194fd724f9d3455d2587080142479683cdb1
-
由 Megvii Engine Team 提交于
* add asan build option * fix cpuinfo build opt level * fix host release build with out debug info * opt "fix lite bazel/cmake symbols MR" * other misc build opt GitOrigin-RevId: 6ca286e195cbe7ecf36e34317a2dab81b7b13a5e
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 95f2666817d49d10d295e8bfc1b8b61379e17712
-
- 21 6月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 656a27d62be10321250652904c544fac32504e7c
-
- 03 6月, 2021 2 次提交
-
-
由 Megvii Engine Team 提交于
* compat clang-cl 11 build at windows env * fix cuda/cudnn/trt copy env build failed on windows GitOrigin-RevId: 7fe2d2c0dcaabf56df1725994a41a15dd09692b6
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: ccff72e39a4cd79f4cad0fbb474680a300204301
-
- 25 5月, 2021 2 次提交
-
-
由 Megvii Engine Team 提交于
reason: some target call python3 to generate some headers, if PYTHON_EXECUTABLE changed, headers will be invalid, which will lead to rebuild most of obj, because this headers will be include in most cpp/c, what`s more, this target do not depends python3 version(python API) the output is same when use python3.5 or python3.x so change use PYTHON_EXECUTABLE to PYTHON3_EXECUTABLE_WITHOUT_VERSION, when PYTHON_EXECUTABLE/PYTHON_LIBRARY/PYTHON_INCLUDE_DIR changed, can reuse the build obj GitOrigin-RevId: c2ffe3ead3a295377a691587ab097636562f571e
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 4840100d07dbaa2b7d8e3e113b444ddf81eeea51
-
- 08 4月, 2021 3 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: b0ad639921e8ba1e370696f16a9d87024a83f4c9
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: d412108732ca56586da3029f3e27543eb0638e4b
-
由 Megvii Engine Team 提交于
detail: NDK do not support find_package(Threads) but NDK support threads! FIXME: compnode support NON-cpu compnode on no support threads env FXIME: may have issue if ANDROID support CUDA, need fix it if need support this case GitOrigin-RevId: 19af74a6af07c541503fc46031d84676cc948b29
-
- 01 4月, 2021 2 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 3c3c6b3462da5bcc1116a3416d3ae6b4f2cfd1f6
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: d6e255b7dc3c82b5389bded2b1dcf6d07f9d2da2
-
- 23 3月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
when cuda enable: error log: nn-8.0.4-trt-7.2.2.3-libs/TensorRT-7.2.2.3/lib/libnvinfer_static.a(profile.o): undefined reference to symbol 'dlclose@@GLIBC_2.2.5' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/libdl.so: error adding symbols: DSO missing from command line ld version: GNU ld (GNU Binutils for Ubuntu) 2.34, example ubuntu20.04 error reason: at new ld, import flags with active zone libnvinfer_static.a depend dlclose@@GLIBC_2.2.5, which need -ldl ld -o rc4_encryptor xxx.o -ldl libnvinfer_static.a, which failed so we put a -ldl for CUDA_LIBS env, then will change to ld -o rc4_encryptor xxx.o libnvinfer_static.a -ldl GitOrigin-RevId: adda3acb2d5c0952013d59948717060747dd2f8f
-
- 22 3月, 2021 3 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 2424eb2681fddcdfa0d48dd7ceb41cf7e5e7bee3
-
由 Megvii Engine Team 提交于
* support arm-host and x86-cross-arm * fix trt myelib cmake build issue at 'trt copy env'(about 'copy env', Please refs cb92123f) about x86-cross-arm CUDA env: 1: run ./scripts/cmake-build/create_cuda_build_libs.py to prepare cuda/cudnn/trt env(download deb package info, Please refs create_cuda_build_libs.py) 2: export TRT_ROOT_DIR=xxxxx which may create by step 1 3: export CUDNN_ROOT_DIR=xxxx which may create by step 1 4: export PATH=xxxx:$PATH xxxx need create by step 1, which nvcc have relative path dir: ../targets/sbsa-linux/ GitOrigin-RevId: 440c76052aabe5b07a4b64d126e759f919c257a8
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: b3067ba4d5f1225048838e4b2460d858c475b75e
-
- 23 1月, 2021 1 次提交
-
-
由 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
-
- 15 1月, 2021 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: ff7d94ea0a007d4e25d99bf59696a02d3c342a8b
-
- 11 1月, 2021 3 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: c63294378e49732a7a41b0b6672a070a518c7882
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: abf881978c8fd85b3cfa823fea13045ff06fb88e
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 4b56e148d864bfe41d399fd766525acdcd96fbad
-
- 18 12月, 2020 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: d2f22ad5fe0b15f45afa1ea31af8874e8b18fef9
-
- 27 11月, 2020 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 4550cbfaa6b4e6e4a22daa8217ab12a1482c1e88
-
- 23 11月, 2020 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: bd1b80c84f5629a4dde5302d775cd8a333ea3cf2
-
- 20 11月, 2020 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: ac0653474655a2b5b89002e888592415fd472190
-
- 26 10月, 2020 1 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 64e74594cec19a1ab41c769e1b76585b70de1e6d
-
- 13 10月, 2020 4 次提交
-
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 04f39943c4cbe0cc116ef5d68c47c6a114d799ee
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 94a40798ab49ac7e046ae6d9ab7fd47850e2e249
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 3528af8baeab4ed47eee04107665610e9ababdc9
-
由 Megvii Engine Team 提交于
GitOrigin-RevId: 54a7814c17d6d008c360dc06e4088e363008ade5
-