1. 08 11月, 2017 1 次提交
  2. 05 10月, 2017 2 次提交
    • Y
      Use PADDLE_WITH_CUDA instead of PADDLE_WITH_GPU · 4558807c
      Yi Wang 提交于
      4558807c
    • Y
      Change `PADDLE_ONLY_CPU` to `PADDLE_WITH_GPU` · 84500f94
      Yu Yang 提交于
      By shell command
      
      ```bash
      sed -i 's#ifdef PADDLE_ONLY_CPU#ifndef PADDLE_WITH_GPU#g' `find ./paddle/ -name '*.h' -o -name '*.cc' -o -name '*.cpp' -o -name '*.c' -o -name '*.cu'`
      sed -i 's#ifndef PADDLE_ONLY_CPU#ifdef PADDLE_WITH_GPU#g' `find ./paddle/ -name '*.h' -o -name '*.cc' -o -name '*.cpp' -o -name '*.c' -o -name '*.cu'`
      ```
      84500f94
  3. 29 9月, 2017 1 次提交
  4. 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
  5. 19 9月, 2017 1 次提交
  6. 14 9月, 2017 1 次提交
  7. 13 9月, 2017 1 次提交
  8. 22 8月, 2017 1 次提交
  9. 21 8月, 2017 3 次提交
  10. 15 8月, 2017 2 次提交
  11. 09 8月, 2017 1 次提交
  12. 05 8月, 2017 1 次提交
  13. 04 8月, 2017 1 次提交
  14. 30 7月, 2017 1 次提交
  15. 28 7月, 2017 1 次提交
  16. 27 7月, 2017 2 次提交
  17. 26 7月, 2017 1 次提交
  18. 25 7月, 2017 2 次提交
  19. 17 7月, 2017 2 次提交
  20. 15 7月, 2017 2 次提交
  21. 12 7月, 2017 9 次提交
  22. 11 7月, 2017 2 次提交
  23. 10 7月, 2017 1 次提交
    • Q
      implement DeviceContext (#2709) · 1038bc46
      QI JUN 提交于
      * add device_context
      
      * add unittest for device_context
      
      * transfer to use function paddle::platform::throw_on_error
      
      * fix cuda build error
      
      * using dynload functions
      
      * follow comments
      1038bc46