1. 24 10月, 2017 2 次提交
  2. 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
  3. 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
  4. 10 10月, 2017 2 次提交
  5. 07 10月, 2017 1 次提交
  6. 05 10月, 2017 4 次提交
  7. 04 10月, 2017 2 次提交
  8. 03 10月, 2017 2 次提交
  9. 02 10月, 2017 1 次提交
  10. 01 10月, 2017 1 次提交
  11. 29 9月, 2017 3 次提交
  12. 28 9月, 2017 1 次提交
  13. 26 9月, 2017 2 次提交
  14. 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
  15. 22 9月, 2017 1 次提交
  16. 19 9月, 2017 3 次提交
  17. 18 9月, 2017 1 次提交
  18. 14 9月, 2017 2 次提交
  19. 13 9月, 2017 2 次提交
  20. 12 9月, 2017 1 次提交
  21. 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
  22. 09 9月, 2017 1 次提交
  23. 07 9月, 2017 1 次提交
  24. 04 9月, 2017 1 次提交
  25. 31 8月, 2017 2 次提交