1. 03 12月, 2020 1 次提交
  2. 01 12月, 2020 1 次提交
  3. 30 11月, 2020 1 次提交
    • W
      Generate code coverage reports only for incremental files (#28508) · 0239f796
      wanghuancoder 提交于
      * Generate code coverage reports only for incremental files, test=develop
      
      * Generate code coverage reports only for incremental files, test=develop
      
      * Generate code coverage reports only for incremental files, test=develop
      
      * test for diff python file, test=develop
      
      * fix no python diff report, test=develop
      
      * add cc test file, test=develop
      
      * fix bug in generic.cmake, test=develop
      
      * for debug no cc report, test=develp
      
      * modify compire branch form test_pr to test, test=develop
      
      * fix bug, test=develop
      
      * test for h file changed, test=develop
      
      * debug for redefinition of argument optimize error, test=develop
      
      * close -o3 for test, test=develop
      
      * remove -o3 for test, test=develop
      
      * remove coverage option for nvcc, test=develop
      
      * use CMAKE_CXX_FLAGS open coverage option when header file changed, test=develop
      
      * reopen -o3, test=develop
      
      * remove debug code, test=develop
      
      * remove unused code, test=develop
      0239f796
  4. 27 11月, 2020 1 次提交
  5. 24 11月, 2020 1 次提交
  6. 09 11月, 2020 2 次提交
  7. 24 9月, 2020 2 次提交
  8. 15 9月, 2020 1 次提交
  9. 26 8月, 2020 1 次提交
  10. 24 8月, 2020 1 次提交
    • Y
      find timeout unittests (#26371) · 39fe0d35
      YUNSHEN XIE 提交于
      * find timeout unittests
      
      * setting timeout value
      
      * fix some error
      
      * fix some error
      
      * fix some error
      
      * fix no newline of end file error
      39fe0d35
  11. 29 7月, 2020 1 次提交
  12. 02 7月, 2020 1 次提交
  13. 23 6月, 2020 1 次提交
  14. 21 6月, 2020 1 次提交
  15. 05 6月, 2020 1 次提交
    • T
      Builtin cuda (#24904) · 211ef78c
      T8T9 提交于
      * support CUDA using cmake built-in way (#24395)
      
      * support CUDA using cmake built-in way. test=develop
      
      * test=develop
      
      * cmake_minimum_required 3.10
      
      * test=develop
      211ef78c
  16. 01 6月, 2020 1 次提交
  17. 13 5月, 2020 1 次提交
  18. 12 5月, 2020 1 次提交
  19. 14 1月, 2020 1 次提交
  20. 16 12月, 2019 1 次提交
  21. 25 11月, 2019 1 次提交
  22. 11 9月, 2019 1 次提交
    • H
      Replace TemporaryAllocator by CUDADeviceContextAllocator (#18989) · 12542320
      Huihuang Zheng 提交于
      TemporaryAllocator is a singleton used for allocating memory for Cudnn. Since it is a singleton, we can delete it for better performance in memory.
      
      We replace TemporaryAllocator by CUDADeviceContextAllocator and CUDADeviceContextAllocation, which uses stream callback to delete the memory allocated for the stream to avoid singleton.
      
      Also added data_feed_proto to operator to fix CI in CPU compilation
      12542320
  23. 12 7月, 2019 1 次提交
  24. 27 6月, 2019 1 次提交
    • K
      add WITH_COVERAGE option, default OFF (#17872) · 27fb9cad
      kh2se2013 提交于
      * add WITH_COVERAGE option, default OFF
      
      test=develop
      
      * add coverage for python sdk
      
      test=develop
      
      * fix code style
      
      * fix COVERAGE_FILE path
      
      test=develop
      
      * remove coverage package
      
      test=develop
      
      * test = develop, run coverage as module
      27fb9cad
  25. 26 6月, 2019 1 次提交
  26. 16 6月, 2019 1 次提交
  27. 13 6月, 2019 1 次提交
  28. 24 5月, 2019 1 次提交
    • M
      [MKL-DNN] Add Fully Connected Op for inference only(#15226) · 0c39b97b
      Michał Gallus 提交于
      * fuse mul and elementwise add to fc
      
      * Reimplement the FC forward operator
      
      * Fix FC MKLDNN integration by transposing weights
      
      * Add FC MKLDNN Pass
      
      test=develop
      
      * FC MKLDNN Pass: change memcpy to std::copy
      
      * Fix MKLDNN FC handling of mismatch input and weights dims
      
      * Lower tolerance for MKL-DNN in resnet50 test
      
      test=develop
      
      * Adjust FC to support MKLDNN Op placement
      
      test=develop
      
      * Adjust Placement Op to set use_mkldnn attribute for graph
      
      test=develop
      
      * MKLDNN FC: fix weights format so that gemm version is called
      
      test=develop
      
      * FC MKLDNN: Remove tolerance decrease from tester_helper
      
      * FC MKL-DNN: Refactor the code, change input reorder to weight reorder
      
      * MKL-DNN FC: Introduce operator caching
      
      test=develop
      
      * FC MKL-DNN: Fix the tensor type in ExpectedKernelType
      
      test=develop
      
      * FC MKL-DNN: fix style changes
      
      test=develop
      
      * FC MKL-DNN: fallback to native on non-supported dim sizes
      
      test=develop
      
      * FC MKLDNN: fix CMake paths
      
      test=develop
      
      * FC MKLDNN: Refine placement pass graph mkldnn attribute
      
      test=develop
      
      * Fix Transpiler error for fuse_conv_eltwise
      
      test=develop
      
      * Fix missing STL includes in files
      
      test=develop
      
      * FC MKL-DNN: Enable new output size computation
      
      Also, refine pass to comply with newest interface.
      test=develop
      
      * FC MKL-DNN: enable only when fc_mkldnn_pass is enabled
      
      * FC MKL-DNN: Allow Weights to use oi or io format
      
      * FC MKL-DNN: Adjust UT to work with correct dims
      
      test=develop
      
      * Enable MKL DEBUG for resnet50 analyzer
      
      test=develop
      
      * FC MKL-DNN: Improve Hashing function
      
      test=develop
      
      * FC MKL-DNN: Fix shape for fc weights in transpiler
      
      * FC MKL-DNN: Update input pointer in re-used fc primitive
      
      * Add log for not handling fc fuse for unsupported dims
      
      test=develop
      
      * FC MKL-DNN: Move transpose from pass to Op Kernel
      
      test=develop
      
      * FC MKL-DNN: Disable transpose in unit test
      
      test=develop
      
      * FC MKL-DNN: Remove fc_mkldnn_pass from default list
      
      * Correct Flag for fake data analyzer tests
      
      test=develop
      
      * FC MKL-DNN: Add comment about fc mkldnn pass disablement
      
      test=develop
      
      * FC MKL-DNN: Disable fc in int8 tests
      
      test=develop
      0c39b97b
  29. 21 5月, 2019 1 次提交
  30. 20 5月, 2019 1 次提交
  31. 03 4月, 2019 1 次提交
  32. 02 4月, 2019 1 次提交
    • C
      Model data cryption link all lib (#16555) · c38c7c56
      Chen Weihang 提交于
      * link the libwbaes.so into paddle
      
      * polish detail, test=develop
      
      * try fix mac_pr_ci error, test=develop
      
      * add compile option, test=develop
      
      * fix ci error, test=develop
      
      * ignore failed to find mac lib, test=develop
      
      * change cdn to bj, cdn can't get the latest version
      
      * trigger ci, test=develop
      
      * temporary delete win32 lib linking, test=develop
      
      * change https to http, test=develop
      
      * turn compile option on to off
      
      * turn compile option off to on, test=develop
      
      * try lib compiled by gcc4.8, test=develop
      
      * update lib version, test=develop
      
      * link other lib, test=develop
      
      * add setup config
      
      * delete false, test=develop
      
      * delete no_soname, test=develop
      
      * recover so name set
      
      * fix, test=develop
      
      * adjust make config, test=develop
      
      * remove link to wbaes, test=develop
      
      * remove useless define, test=develop
      c38c7c56
  33. 25 1月, 2019 1 次提交
  34. 21 1月, 2019 2 次提交
  35. 18 1月, 2019 1 次提交
  36. 16 1月, 2019 1 次提交
    • Y
      Optimize while_op for test (#14764) · 568cc2ff
      Yiqun Liu 提交于
      * Simplify the compare op for CPU.
      
      * Use asynchronous tensor copy in reshape_op's kernel.
      
      * Optimize while_op for test, avoiding creating variables every time.
      test=develop
      
      * Enable the cache of kernel type and kernel function.
      test=develop
      
      * Enable profiling with gperftools.
      
      * Remove flags for testing, and fix the linking error.
      test=develop
      
      * Delete the codes of ChooseKernel.
      test=develop
      
      * Fix bug when preparing ExecutorPrepareContext for while_op.
      
      * Fix missing depending on grpc libraries.
      
      * Remove the redundant print.
      test=develop
      
      * Follow comments.
      
      * Remove the codes related to prepare the ExecutorPrepareContext for while_op.
      test=develop
      568cc2ff
  37. 10 1月, 2019 1 次提交