1. 12 1月, 2018 1 次提交
  2. 11 1月, 2018 1 次提交
  3. 10 1月, 2018 2 次提交
  4. 09 1月, 2018 1 次提交
  5. 04 1月, 2018 1 次提交
  6. 03 1月, 2018 2 次提交
  7. 27 12月, 2017 1 次提交
  8. 25 12月, 2017 1 次提交
  9. 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
  10. 19 12月, 2017 1 次提交
  11. 14 12月, 2017 1 次提交
  12. 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
  13. 30 11月, 2017 1 次提交
  14. 29 11月, 2017 1 次提交
  15. 27 11月, 2017 1 次提交
  16. 14 11月, 2017 1 次提交
  17. 31 10月, 2017 1 次提交
  18. 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