1. 26 10月, 2017 1 次提交
    • Q
      Cudnn batch norm op (#5067) · 56b723c4
      Qiao Longfei 提交于
      * init cudnn batch norm op
      
      * rename batch_norm_cudnn_op.cc batch_norm_op.cu
      
      * correct name style
      
      * add ExtractNCWHD, simplify code
      
      * fix ExtractNCWHD
      
      * use CUDNN_ENFORCE instead of PADDLE_ENFORCE
      56b723c4
  2. 24 10月, 2017 2 次提交
  3. 18 10月, 2017 1 次提交
    • M
      MatMul operator (#4856) · 16489827
      Markus Kliegl 提交于
      * initial matmul operator
      
      Similar to np.matmul, but also has transpose_X and transpose_Y flags,
      and only supports tensors from rank 1 to 3 inclusive.
      
      For GPU, uses cublas?gemmStridedBatched. For CPU, uses
      cblas_?gemm_batch if available via MKL; otherwise a simple serial
      implementation that loops over the batch dimension is employed for now.
      16489827
  4. 12 10月, 2017 1 次提交
    • Cudnn conv op (#4195) · a3ccbdb3
      武毅 提交于
      * add cudnn_conv_op
      
      * WIP
      
      * update
      
      * update
      
      * fix grad check
      
      * use platform::memory
      
      * add support group for cudnn
      
      * update
      
      * follow comments
      
      * fix onlycpu build
      
      * update cuda define
      
      * follow comments
      
      * follow comments
      
      * merge with updates
      
      * fix compile error
      
      * follow comments
      
      * follow comments
      a3ccbdb3
  5. 10 10月, 2017 2 次提交
  6. 07 10月, 2017 1 次提交
  7. 05 10月, 2017 4 次提交
  8. 04 10月, 2017 2 次提交
  9. 03 10月, 2017 2 次提交
  10. 02 10月, 2017 1 次提交
  11. 01 10月, 2017 1 次提交
  12. 29 9月, 2017 3 次提交
  13. 28 9月, 2017 1 次提交
  14. 26 9月, 2017 2 次提交
  15. 23 9月, 2017 1 次提交
    • Y
      Sync computation when Python invoke `run` · ba1f5b5c
      Yu Yang 提交于
      * Since GPU is an async device by default. We should sync computation
        when Python invoke `run`. So Python can get the correct computation
        result
      ba1f5b5c
  16. 22 9月, 2017 1 次提交
  17. 19 9月, 2017 3 次提交
  18. 18 9月, 2017 1 次提交
  19. 14 9月, 2017 2 次提交
  20. 13 9月, 2017 2 次提交
  21. 12 9月, 2017 1 次提交
  22. 11 9月, 2017 1 次提交
    • Y
      Remove enforce demangle · dad5421a
      Yu Yang 提交于
      It is buggy in some Linux because the unique_ptr will be free however
      the std::string trying to use that char*.
      
      Moreover, it is no need to demangle for error log by Paddle.
      Just use `c++filt` or other shell utilities to do this.
      dad5421a
  23. 09 9月, 2017 1 次提交
  24. 07 9月, 2017 1 次提交
  25. 04 9月, 2017 1 次提交
  26. 31 8月, 2017 1 次提交