1. 07 12月, 2021 1 次提交
  2. 03 3月, 2021 1 次提交
    • A
      core: rework code locality · cbfd38bd
      Alexander Alekhin 提交于
      - to reduce binaries size of FFmpeg Windows wrapper
      - MinGW linker doesn't support -ffunction-sections (used for FFmpeg Windows wrapper)
      - move code to improve locality with its used dependencies
      - move UMat::dot() to matmul.dispatch.cpp (Mat::dot() is already there)
      - move UMat::inv() to lapack.cpp
      - move UMat::mul() to arithm.cpp
      - move UMat:eye() to matrix_operations.cpp (near setIdentity() implementation)
      - move normalize(): convert_scale.cpp => norm.cpp
      - move convertAndUnrollScalar(): arithm.cpp => copy.cpp
      - move scalarToRawData(): array.cpp => copy.cpp
      - move transpose(): matrix_operations.cpp => matrix_transform.cpp
      - move flip(), rotate(): copy.cpp => matrix_transform.cpp (rotate90 uses flip and transpose)
      - add 'OPENCV_CORE_EXCLUDE_C_API' CMake variable to exclude compilation of C-API functions from the core module
      - matrix_wrap.cpp: add compile-time checks for CUDA/OpenGL calls
      - the steps above allow to reduce FFmpeg wrapper size for ~1.5Mb (initial size of OpenCV part is about 3Mb)
      
      backport is done to improve merge experience (less conflicts)
      backport of commit: 65eb9467
      cbfd38bd
  3. 06 12月, 2020 1 次提交
  4. 12 3月, 2020 1 次提交
  5. 13 12月, 2019 1 次提交
  6. 01 11月, 2019 1 次提交
  7. 08 10月, 2019 1 次提交
    • S
      Merge pull request #15510 from seiko2plus:issue15506 · f2fe6f40
      Sayed Adel 提交于
      * core: rework and optimize SIMD implementation of dotProd
      
        - add new universal intrinsics v_dotprod[int32], v_dotprod_expand[u&int8, u&int16, int32], v_cvt_f64(int64)
        - add a boolean param for all v_dotprod&_expand intrinsics that change the behavior of addition order between
          pairs in some platforms in order to reach the maximum optimization when the sum among all lanes is what only matters
        - fix clang build on ppc64le
        - support wide universal intrinsics for dotProd_32s
        - remove raw SIMD and activate universal intrinsics for dotProd_8
        - implement SIMD optimization for dotProd_s16&u16
        - extend performance test data types of dotprod
        - fix GCC VSX workaround of vec_mule and vec_mulo (in little-endian it must be swapped)
        - optimize v_mul_expand(int32) on VSX
      
      * core: remove boolean param from v_dotprod&_expand and implement v_dotprod_fast&v_dotprod_expand_fast
      
        this changes made depend on "terfendail" review
      f2fe6f40
  8. 08 8月, 2019 1 次提交
  9. 03 6月, 2019 1 次提交
    • V
      Merge pull request #14210 from terfendail:wui_512 · 3b015dfc
      Vitaly Tuzov 提交于
      AVX512 wide universal intrinsics (#14210)
      
      * Added implementation of 512-bit wide universal intrinsics(WIP)
      
      * Added implementation of 512-bit wide universal intrinsics: implemented WUI vector types(WIP)
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented load/store
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented fp16 load/store
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented recombine and zip, implemented non-saturating and saturating arithmetics
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented bit operations
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented comparisons
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented lane shifts and reduction
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented absolute values
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented rounding and cast to float
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented LUT
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented type extension/narrowing and matrix operations
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented load_deinterleave for 2 and 3 channels images
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reimplemented load_deinterleave for 2- and implemented for 4-channel images
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented store_interleave
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): implemented signmask and checks
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): build fixes
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reimplemented popcount in case AVX512_BITALG is unavailable
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reimplemented zip
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reimplemented rotate for s8 and s16
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reimplemented interleave/deinterleave for s8 and s16
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): updated v512_set macros
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fix for GCC wrong _mm512_abs_pd definition
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reworked v_zip to avoid AVX512_VBMI intrinsics
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reworked v_invsqrt to avoid AVX512_ER intrinsics
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reworked v_rotate, v_popcount and interleave/deinterleave for U8 to avoid AVX512_VBMI intrinsics
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed integral image SIMD part
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed warnings
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed load_deinterleave for u8 and u16
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed v_invsqrt accuracy for f64
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed interleave/deinterleave for u32 and u64
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed interleave_pairs, interleave_quads and pack_triplets
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed rotate_left
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed rotate_left/right, part 2
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed 512-wide universal intrinsics based resize
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed findContours by avoiding use of uint64 dependent 512-wide v_signmask()
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): fixed trailing whitespaces
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): reworked specific intrinsic sets dependent parts to check availability of intrinsics based on CPU feature group defines
      
      * Added implementation of 512-bit wide universal intrinsics(WIP):Updated AVX512 implementation of v_popcount to avoid AVX512VPOPCNTDQ intrinsics if unavailable.
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): Fixed universal intrinsics data initialisation, v_mul_wrap, v_floor, v_ceil and v_signmask.
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): Removed hasSIMD512()
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): Fixes for gcc build
      
      * Added implementation of 512-bit wide universal intrinsics(WIP): Reworked v_signmask, v_check_any() and v_check_all() implementation.
      3b015dfc
  10. 20 3月, 2019 1 次提交
  11. 23 2月, 2019 1 次提交
  12. 22 2月, 2019 1 次提交
  13. 19 2月, 2019 1 次提交
  14. 18 2月, 2019 1 次提交
    • A
      core: dispatch matmul · cd66f6e3
      Alexander Alekhin 提交于
      - gemm: keep baseline only (lapack is 10x+ faster, lets reduce binary size)
      - transform / distTransform
      - scaleAdd (32f/64f only)
      - Mahalanobis: keep baseline only (no perf tests)
      - mulTransposed: keep baseline only (no perf tests)
      - dot
      cd66f6e3
  15. 14 2月, 2019 1 次提交
  16. 13 2月, 2019 1 次提交
  17. 08 2月, 2019 2 次提交
  18. 20 11月, 2018 1 次提交
    • S
      core: several improves and fixes on ppc64le infrastructure · 474a0dac
      Sayed Adel 提交于
        - add infrastructure support for Power9/VSX3
        - fix missing VSX flags on GCC4.9 and CLANG4(#13210, #13222)
        - fix disable VSX optimzation on GCC by using flag ENABLE_VSX
        - flag ENABLE_VSX is deprecated now, use CPU_BASELINE, CPU_DISPATCH instead
        - add VSX3 to arithmetic dispatchable flags
      474a0dac
  19. 16 11月, 2018 1 次提交
  20. 30 10月, 2018 1 次提交
    • S
      core: reimplement SIMD arithmetic, logic and comparison operations into wide universal intrinsics · 93ffebc2
      Sayed Adel 提交于
        - initialize arithmetic dispatcher
        - add new universal intrinsic v_absdiffs
        - add new universal intrinsic v_pack_b
        - add accumulate version of universal intrinsic v_round
        - fix sse/avx2:uint8 multiplication overflow
        - reimplement arithmetic, logic and comparison operations into wide universal intrinsics
          with full support for all types
        - reimplement IPP arithmetic, logic and comparison operations in a sperate file arithm_ipp.hpp
        - avoid scalar multiplication if scaling factor eq 1 and use integer multiplication
        - move C arithmetic operations to precomp.hpp and delete [arithm_simd|arithm_core].hpp
        - add compatibility with new opencv4 divide policy
      93ffebc2
  21. 04 9月, 2018 1 次提交
  22. 16 8月, 2018 1 次提交
  23. 01 8月, 2018 1 次提交
  24. 06 4月, 2018 1 次提交
  25. 28 3月, 2018 1 次提交
  26. 06 3月, 2018 2 次提交
  27. 06 2月, 2018 1 次提交
  28. 28 1月, 2018 1 次提交
  29. 25 9月, 2017 1 次提交
    • C
      Merge pull request #9466 from huningxin:js · 89b6e68e
      Congxiang Pan 提交于
      GSoC 2017: Improve and Extend the JavaScript Bindings for OpenCV (#9466)
      
      * Initial support for build with emscripten
      
      mkdir build_js
      cd build_js
      cmake -D CMAKE_TOOLCHAIN_FILE=/path/to/emsdk/emsdk-portable/emscripten/master/cmake/Modules/Platform/Emscripten.cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX=/usr/local ..
      
      * Add js module
      
      The output is build/bin/opencv_js.js
      
      * Fix opencv2/calib3d.hpp not found issue
      
      * Add module name
      
      Usage:
      var cv = cv();
      
      * Add total memory as 128MB and allow growth
      
      * Add compilation flags for emscripten
      
      * Use EMSCRIPTEN build target
      
      * Disable js module for non emscripten build
      
      * Bind the preload file path to root
      
      Usage:
      face_cascade.load('haarcascade_frontalface_default.xml');
      
      * add test folder
      
      * fix test files
      
      * Copy js module test to bin
      
      * Support to run tests on Node.js
      
      Fix tests to import cv Module when runtime is node.
      Add tests.js to use qunit to auto run tests.
      Modify umd wrapper to support Module is not defined.
      
      Usage:
      node tests.js
      
      * Support UMD and file system
      
      Wrap the opencv_js.js to opencv.js by UMD wrapper
      
      Use emscripten file system API to load files instead of generating data file or
      embedding them. It supports both browser and node.js usages.
      
      * Fix incorrect module name in tests
      
      * Add package.json to add dependence of qunit
      
      * Add js_tutorials folder and a intro page of opencv.js
      
      Enable BUILD_DOCS in CMakeLists.txt.
      Add new folder of js_tutorials in folder opencv/doc.
      Imitate the tutorials of OpenCV-Python to create a intro page of opencv.js and a setup guide
      
      * Import and use binding gen from opencvjs project
      
      * Modify the embindgen.py to pass the build and test
      
      * Add classes and functions white list
      
      * Consolidate hdr_parser.py (#31)
      
      Use hdr_parser.py of python module
      
      Add js flag to support js binding generator.
      
      * Use emscripten::vecFromJSArray for input vector param
      
      Fix part of #23
      
      * Fix test cases after #34
      
      Fix #39
      
      * Expose groupRectangles and CascadeClassifier.empty
      
      * Add js highgui tutorials
      
      add tutorials of imread&imshow and createTrackbar in doc/js_tutorials/js_gui folder
      add interactive tutorial webpage for imread&imshow and createTrackbar in doc/js_tutorials/js_interactive_tutorials folder, and some images needed.
      change doc/CMakeLists.txt to copy the interactive tutorial webpage and opencv.js to the tutorials' destination folder
      
      * rm useless annotation in doc/CMakeLists.txt
      
      * fix some nonstandard indentation and space
      
      * add check if canvas is valid
      
      * Expose BackgroundSubtractorMOG2
      
      Fix #43
      
      * Fix build of js doc
      
      Limit copy_js_interactive_tutorials for doxygen build
      Add dep to opencv.js
      
      Fix #53
      
      * Implement cv.imread & cv.imshow and insert interactive pages in tutorials (#55)
      
      * add helper.js
      
      * delete ALL in add target copy_js_interactive_tutorials to avoid dependence error
      
      * Insert interactive pages in tutorials
      
      insert the old interactive pages in markdown by using \htmlonly and \endhtmlonly command.
      delete the useless interactive page
      rename js_interactive_tutorials to js_assets to put some images needed in
      
      * fix the depends of the target doxygen
      
      add opencv.js to depends and delete the useless target of copy_js_assets
      
      * change filename helper.js to helpers.js
      
      * disable button or trankbar before opencv.js is ready
      
      * Expose CV_64F
      
      Fix #65
      
      * improve cv.imshow to display different types as native imshow
      
      * add utils.js to reuse functions and update tutorials
      
      * Make doxygen depend on bin/opencv.js
      
      * Fix memory issue of matFromArray
      
      Fix #37
      
      * Merge pull request from ganwenyao/tutorial_18
      
      * Add notes for ganwenyao/tutorial_18
      
      * Modifying for ganwenyao/tutorial_18
      
      * Change Mat constructor with data to 5 parameters
      
      * Mat supports constructor with Scalar
      
      Fix #60
      
      * update cv.imread cause the memory issue of matFromArray has been fixed
      
      * fix canvas name and default input image
      
      * Expose cv::Moments
      
      Fix #85
      
      * Add -Wno-missing-prototypes for emscripten build
      
      * fix canvas name
      
      * add tutorial of video input and output
      
      * Expose enums as emscripten consts
      
      Fix #72
      
      * update the tutorial to use Mat constructor with Scalar and change lena.jpg
      
      * Exclude cv::Mat for vecFromJSArray
      
      Fix #82
      
      * Add unit tests for cv.moments
      
      * Fix the unit tests.
      
      * add checkbox and stop button
      
      * add adapter.js to make sure compatibility fo video tutorials
      
      * Support default parameters with function overloading
      
      * modify enums to constants
      
      * Use https URL for MathJax.js
      
      Fix #109
      
      * Comment out the debug print in embindgen.py
      
      * Expose RotatedRect
      
      Fix #96
      
      * replace enum with constants and improve onload function
      
      * delete some useless paras cause #105 fixed this
      
      * Modify const name
      
      * Modify Contour Properties
      
      * tutorials for imgprc2 and objdec
      
      * Expose more functions for img proc tutorials
      
      Fix #76
      
      * Expose polylines for video analysis tutorial
      
      Fix #121
      
      * Expose constants for default parameters of img proc tutorials
      
      Fix #122
      
      * Fix wrong parameter types of Mat.copyTo
      
      Fix #87
      
      * Support default parameters of mat.convertTo
      
      Fix #123
      
      * Support default parameters for external constructors
      
      Fix #131
      
      * Revert "Expose polylines for video analysis tutorial"
      
      This reverts commit 3ce7615652e510d30e3c0014706ac38c98883189.
      
      Fix #121
      
      * Support cv.minMaxLoc
      
      Fix #127
      
      * Expose cv.minEnclosingCircle
      
      Fix #126
      
      * Add video analysis tutorials
      
      add three video tutorials, Meanshift and Camshift, Optical Flow Background Subtraction
      add cup.mp4 and box.mp4 for demo in tutorials
      
      * improve image processing tutorials
      
      * repalce console.warn with throw to throw exception
      
      * add try-catch to throw exception in code demo
      
      * Change mat.size() return value to JS Array object
      
      Fix #140
      
      * add a note about different channels order between canvas and native opencv
      
      * add a note about how to capture video from video files
      
      * Binding cv.Scalar to JS array
      
      Fix #147
      
      * Add JS cv.Scalar object into helpers.js
      
      * Update Install OpenCV-JavaScript tutorial page
      
      Fix #44
      
      * Update the OpenCV-JavaScript introduction page
      
      Fix #44
      
      * add cv.VideoCapture and read() function
      
      * set the size of the hidden canvas same as the video
      
      * Add Using OpenCV-JavaScript tutorial page
      
      Fix #44
      
      * fix some bad code style
      
      * Update tutorials after 8/2 sync meeting
      
      Changes include:
      - Use OpenCV.js name instead of OpenCV-JavaScript
      - Put using OpenCV.js ahead of build OpenCV.js
      - Refine usage and introduction page
      - Muted the video in tutorials
      
      * Fix a typo in introduction page
      
      * use cv.VideoCapture and its read() function to read video
      
      * replace OpenCV-JavaScript with OpenCV.js
      
      * Use onload of async script in js_usage tutorial
      
      * add more info about mat.data
      
      * Change Size to value_object
      
      * Integrate Moh and Sajjad's editing into introduction page
      
      * Change Point to value_object
      
      * Change Rect to value_object with helper object
      
      * Add helper objects for Point and Size
      
      * Change RotatedRect to value_object with helpers
      
      * Change MinMaxLoc and Circle to value_object
      
      * Change TermCriteria to value_object
      
      * Fix core_bindings.cpp for MinMaxLoc and Circle
      
      * Remove unused types
      
      * Change meanShift and CamShift to return Rect
      
      * Change methods of RotatedRect to static
      
      * Change mat.data from methods to property
      
      Fix #75 and #77
      
      * support img id and element in cv.imread
      
      * Change mat.size to property and add mat.step
      
      Fix #163
      
      * Add matFromArray and matFromImageData as JS helpers
      
      Fix #79, #78
      
      * Lower camel case for Mat element getters
      
      Fix #81
      
      * Mat.getRoiRect and tests
      
      Fix #86
      
      * Support type for Mat.ptr
      
      Fix #83
      
      * Name changing of Mat element getters
      
      'getUcharAt` -> 'ucharAt'
      
      * fix code style and args names
      
      * Fix helpers.js due to cv.Mat API update
      
      * Fix opencv.js usage tutorial
      
      * Fix a typo of js_setup
      
      * Change Moments to value_object
      
      * Add Range as value_object
      
      Fix #171
      
      * Support Mat.diag and Mat.isContinous
      
      Fix #84 and #89
      
      * Support Mat.setTo
      
      Fix #88
      
      * Apply edits to js_intro
      
      * Apply edits to js_usage
      
      * Apply edits to js_setup
      
      * update tutorials to apply data type change
      
      * Modify tutorials
      
      * add core tutorials
      
      * delete MatVector elements and delete useless set operation
      
      * add tutorials_objdec_camera
      
      * Add instructions for WebAssembly
      
      * apply tech writer's feedbacks into tutorials
      
      * Organize white list by modules
      
      * Change size to method and bind to MatExpr.size()
      
      Fix #177
      
      * improve tutorials
      
      * Modify core tutorials
      
      * add params list and explanations for OpenCV.js functions
      
      * remove face_profile from Face Detection in Video Capture
      
      * Add demos link
      
      * Change Gui to GUI
      
      * Update js_intro based on Moh and Sajjad's edits
      
      * Fixup for 3.3.0 rebase
      
      * Update js_intro per Moh's suggestion
      
      * Update contributors list per Moh's idea
      
      * add adapter.js in video_display tutorial
      
      * Change Mat.getRoiRect to Mat.roi
      
      Fix #194
      
      * Remove unnecessary files for test
      
      Fix #192
      
      * Licenses updated to UC BSD 3-Clause
      
      * Apply OpenCV coding style for C++ files
      
      * Add OpenCV license for python and js files
      
      * Fix coding style issue in helpers.js
      
      * Remove unused test_commons.js
      
      * Fix coding style of test_imgproc.js
      
      * Fix coding style of test_mat.js
      
      * Fix space before semicolon
      
      * Fix coding style of test_objdetect.js
      
      * Fix coding style of tests.js
      
      * Fix coding style of test_utils.js
      
      * Fix coding style of test_video.js
      
      * Fix failures of node.js tests
      
      * Add eslint rule config and fix eslint errors
      
      * Add eslint config for js/src and fix eslint errors
      
      * Clean up the opencv.js dependencies
      
      Fix #186
      
      * Fix build issue for python generator
      
      * Fix doxygen buildbot failure
      
      * delete trailing whitespace, blank line at EOF and replace tab with space
      
      * Fix tutorial_js_root reference issue for non opencv.js build
      
      * replace the file with small size
      
      * Initial commit of build_js.py
      
      * Move the js build configurations to build script
      
      * Add wasm build support
      
      * Update OpenCV.js build tutorial by using script
      
      * Fix global var issue in tests
      
      * Add a README.md for build_js.py
      
      * Copy the haar cascade files from data dir for tutorials
      
      * Not use memory init file
      
      * Disable debug print for modules/js/CMakeLists.txt
      
      * Check files when build done
      
      * Fix image name in js_gradients tutorial
      
      * Fix image load issue in js_trackbar tutorial
      
      * Find the opencv source directory via relative path by default
      
      * Make the cmake args based on build_doc option
      
      * Fix a typo in js_setup.markdown
      
      * Fix make failure issue on config generated by build_js.py
      
      * Eliminate js branch of hdr_parser.py
      
      * Extract examples from js_basic_ops tutorial
      
      * Fix coding style of utils.js
      
      * Improve examples error handling
      
      Handle:
      1. opencv.js loading errors
      2. script errors (Error)
      3. cv::Exception
      
      Fix #217
      
      * Add enable_exception option into build_js.py
      
      * Support print exception for exception catching disabled build
      
      * Extract example from js_usage tutorial
      
      * Avoid copying .eslintrc.json when building doc
      
      Fix #223
      
      * Revert to use onload as opencv.js ready event
      
      * Use 4 spaces indention for js examples
      
      * embed html in tutorials with iframe tag
      
      * Revert to use onload as opencv.js ready event
      
      * Extract examples from js_video_display tutorial
      
      * Implement Utils object
      
      * modify core imgprc and face_detection tutorials
      
      * Fix examples of js_gui tutorials
      
      * Fix coding style of utils.js
      
      * Modify tutorials
      
      * Extract example from js_face_detection_camera tutorial
      
      * Disable new-cap check in eslint
      
      * Extract examples from js_meanshift tutorial
      
      * Extract examples from video tutorials
      
      * Remove new-cap declaration and update grammer in comments
      
      * Change textarea width to 100 to align with eslint config
      
      * Fix printError issue when opencv.js loading fails
      
      * Remove BUILD_opencv_js dependency for doc build
      
      Fix #213
      
      * Expose cv::getBuildInformation
      
      * Dump opencv build info when opencv.js loaded for live examples
      
      * Make the button to stand out in js live examples
      
      Fix #235
      
      * Style for disabled button
      
      * Add js_imgproc_camera.html example
      
      * Fix coding style of imgproc_camera example
      
      * Add js_imgproc_camera tutorial
      
      * Remove link to opencv.js demos
      
      * doc: copy opencv.js on build, use absolute paths for assets
      
      * doc: reuse existed file box.mp4
      89b6e68e
  30. 04 9月, 2017 1 次提交
    • A
      fix CUDA build · 164a41b3
      Alexander Alekhin 提交于
      CUDA implementation wants to convert std::vector<KeyPoint> <-> GpuMat.
      There is no direct mapping from KeyPoint (mix of int/float fields)
      into cv::Mat element type, so this conversion must be avoided.
      
      Legacy mode is turned back for CUDA builds.
      164a41b3
  31. 22 8月, 2017 1 次提交
  32. 19 8月, 2017 1 次提交
  33. 27 7月, 2017 1 次提交
  34. 03 7月, 2017 2 次提交
  35. 26 6月, 2017 1 次提交
  36. 21 6月, 2017 2 次提交