1. 24 2月, 2018 3 次提交
  2. 16 2月, 2018 1 次提交
    • A
      Python implementation for a proposed Go Op. (#8434) · 74404fad
      Abhinav Arora 提交于
      * Adding Python boilerplate code for Go op
      
      * Add very basic test case
      
      * Adding the python logic for go routine
      
      * Fix syntax
      
      * Changing test to notest
      
      * Rename Routine to Go
      
      * Combining GoGuard and Go in one class
      
      * Modify test
      
      * Adding fluid close channel
      
      * Fixing __init__.py for calling fluid.go()
      
      * Adding stubs for channel methods and updating test case
      
      * Removing import *
      
      * Adding imports from concurrency
      74404fad
  3. 12 2月, 2018 1 次提交
  4. 09 2月, 2018 2 次提交
  5. 01 2月, 2018 1 次提交
  6. 31 1月, 2018 3 次提交
  7. 24 1月, 2018 1 次提交
  8. 22 1月, 2018 1 次提交
  9. 21 1月, 2018 1 次提交
    • D
      "fix decode bug" (#7711) · e983cc90
      dzhwinter 提交于
      * "fix decode bug"
      
      * "follow commnet"
      
      * "fix error"
      
      * "fix hook bug"
      
      * fix based comment
      
      * fix copyright
      
      * fix based on comment
      e983cc90
  10. 19 1月, 2018 1 次提交
  11. 15 1月, 2018 1 次提交
    • D
      Feature/hooks (#7513) · b9b75377
      dzhwinter 提交于
      * add copyright hook
      
      * add copyright hook
      
      * refine copyright hook
      
      * "test copyright hook"
      
      * fix check style
      
      * fix ci
      b9b75377
  12. 12 1月, 2018 2 次提交
  13. 11 1月, 2018 1 次提交
  14. 10 1月, 2018 2 次提交
  15. 09 1月, 2018 1 次提交
  16. 04 1月, 2018 1 次提交
  17. 03 1月, 2018 2 次提交
  18. 27 12月, 2017 1 次提交
  19. 25 12月, 2017 1 次提交
  20. 24 12月, 2017 1 次提交
    • D
      Feature/operator run place (#6783) · 735eba29
      dzhwinter 提交于
      * "change operator interface"
      
      * "move devicepool to device_context"
      
      * "fix operator test"
      
      * "fix op_registry Run interface"
      
      * "net op passed. Need to fix nccl multi-Context"
      
      * "add nccl group function"
      
      * "add nccl group function"
      
      * "fix gpu count exceed 32 error"
      
      * "fix recurrent op, nccl op"
      
      * "change the other operators interface with Place"
      
      * "fix typo"
      
      * "fix pybind"
      
      * "fix device in python side"
      
      * "fix pybind failed"
      
      * "add init for test"
      
      * "fix CI"
      735eba29
  21. 19 12月, 2017 1 次提交
  22. 14 12月, 2017 1 次提交
  23. 04 12月, 2017 1 次提交
    • Y
      Add DataFeeder (#6102) · 2a3a1e9a
      Yu Yang 提交于
      * Add DataFeeder
      
      A v2 API like data feeder for book demos.
      We can feed data directly from reader.
      
      * Fix CI
      
      * Remove batch_size_dim for feeder
      
      Also add __all__ to data_feeder.py
      
      * Follow comment
      2a3a1e9a
  24. 30 11月, 2017 1 次提交
  25. 29 11月, 2017 1 次提交
  26. 27 11月, 2017 1 次提交
  27. 14 11月, 2017 1 次提交
  28. 31 10月, 2017 1 次提交
  29. 06 7月, 2017 1 次提交
    • Y
      Generate python protobufs for paddle.v2.framework · e2ea1f42
      Yu Yang 提交于
      Python should be able to manipulate Protobuf message because:
      
      1. Python's `create_op_creation_methods` take the `OpProto` array to
         generate all `op_creation_methods` in RunTime.
      
      2. All `op_creation_methods` will create an `OpDesc` and pass it to
         Paddle C++ method `CreateOp` and return the Op handle.
      
      Here is the list of what is added in this commit:
      
      * Add `protobuf_generate_python` if it is not defined.
        * Before cmake 3.4, `protobuf_generate_python` is not defined. Just
          copy the implementation of that function in `protobuf.cmake`
      * Add `py_proto_compile` function in `cmake/generic.cmake`.
        * It follows bazel's API interface.
          * https://github.com/pubref/rules_protobuf#rules
      * Add an empty package named `paddle.v2.framework`, all python code of
        `paddle::framework` will be in that package.
      * Generate protobuf's python module `__init__.py` by `touch` while
        compiling.
      * Change setup.py.in, make `paddle.v2.framework.proto` uses the
        generated protobuf pythons.
      e2ea1f42