1. 09 10月, 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. 10 8月, 2017 1 次提交
  4. 09 8月, 2017 2 次提交
  5. 04 8月, 2017 1 次提交
  6. 03 8月, 2017 2 次提交
  7. 04 1月, 2017 1 次提交
  8. 14 12月, 2016 1 次提交
  9. 12 12月, 2016 1 次提交
  10. 09 12月, 2016 1 次提交
  11. 22 11月, 2016 1 次提交
  12. 05 11月, 2016 1 次提交
    • E
      Add elementwise math operations (#343) · 6c3a678c
      emailweixu 提交于
      * Add elementwise math operations
      This allows use to use expressions like: y=log(1+exp(x))
      Also added unittests for ActivationFunction
      * Enforce keyword arguments for non-positional arguments
      * Add LogActivation to doc
      6c3a678c