1. 24 8月, 2017 1 次提交
  2. 20 8月, 2017 1 次提交
  3. 16 8月, 2017 3 次提交
  4. 15 8月, 2017 2 次提交
  5. 14 8月, 2017 1 次提交
  6. 12 8月, 2017 3 次提交
  7. 09 8月, 2017 1 次提交
  8. 08 8月, 2017 1 次提交
    • Y
      Make Compile Pass · dba618c0
      Yu Yang 提交于
      * Although backward_test/rnn_test is not pass, just comment them.
      dba618c0
  9. 07 8月, 2017 2 次提交
  10. 05 8月, 2017 1 次提交
  11. 03 8月, 2017 1 次提交
  12. 01 8月, 2017 3 次提交
    • Y
      Merge develop · 051d6c86
      Yu Yang 提交于
      051d6c86
    • Y
      Refine remove std::shared_ptr in Scope · 5d134a03
      Yu Yang 提交于
      * Make interface of Operator to `const Scope&`
      5d134a03
    • Q
      use operator context and infer context (#3024) · 61ebacbc
      Qiao Longfei 提交于
      * use operator context
      
      * optimize code
      
      * update net infershape
      
      * update InferShape
      
      * disable override InferShape(scope) in OperatorBase
      
      * change InferShapeImpl to InferShape
      
      * add template to OperatorContext Input/Output
      
      * merge Input InputVar, Output OutputVar
      
      * change Inputs to MultiInput
      
      * fix conflict
      
      * fix MultiInput bugs and add unit test
      
      * rename KernelContext to ExecutionContext
      
      * clean code
      
      * change InferShape to protected
      
      * fix template bug
      
      * refine code
      
      * use InputVar instead of Input<Variable>
      
      * typo
      
      * optimize code
      61ebacbc
  13. 27 7月, 2017 2 次提交
  14. 26 7月, 2017 1 次提交
  15. 25 7月, 2017 1 次提交
  16. 24 7月, 2017 2 次提交
  17. 20 7月, 2017 2 次提交
  18. 18 7月, 2017 3 次提交
  19. 16 7月, 2017 1 次提交
    • Q
      change net to operator (#2846) · 45ce1649
      Qiao Longfei 提交于
      * OperatorBase should not store OpDesc because not All op contains an
        OpDesc and not all ops create from OpDesc.
        * Networks do not contain OpDesc and are not created by OpDesc
      * Do not register Network to OpRegistry.
        * The network is directly created by the user in Python. Not from
          registry.
      * Correctly handle the `inputs` and `outputs` of a Network.
        * Add CompleteAddOp() methods
      * Remove `AddOp(OpDesc&)` in net-op. All op are added by OperatorPtr.
      * Rewrite unit test for truly tested what networks do.
      * optimise operator_test
      45ce1649