1. 06 1月, 2021 1 次提交
  2. 31 12月, 2020 1 次提交
  3. 28 12月, 2020 1 次提交
  4. 22 12月, 2020 1 次提交
  5. 21 12月, 2020 1 次提交
  6. 18 12月, 2020 2 次提交
  7. 14 12月, 2020 1 次提交
    • L
      [Dy2Stat] 1. Fix bug of for-range stmts. 2. Support that step value is... · 0cad1152
      liym27 提交于
      [Dy2Stat] 1. Fix bug of for-range stmts. 2. Support that step value is negative in for-range stmts (#29519)
      
      1. Fix error in _build_cond_stmt of for-range stmts. 
      
      2. Support that step value is negative in for-range stmts
      
      3. Fix code because of the diff between Py2 and Py3
      0cad1152
  8. 11 12月, 2020 2 次提交
  9. 10 12月, 2020 1 次提交
  10. 09 12月, 2020 3 次提交
  11. 07 12月, 2020 1 次提交
  12. 04 12月, 2020 4 次提交
  13. 03 12月, 2020 2 次提交
    • L
      use has_grad instead of train_mode (#29309) · b58cfff8
      Leo Chen 提交于
      * use has_grad instead of train_mode
      
      * add vlog for debug
      
      * fix ut
      
      * fix ut
      b58cfff8
    • L
      [Dy2stat] Add a decorator paddle.jit.not_to_static to support that not to... · b9a8ebd5
      liym27 提交于
      [Dy2stat] Add a decorator paddle.jit.not_to_static to support that not to convert a function in Dynamic-to-Static. (#29253)
      
      Usage scenarios:A function could have run successfully in static mode,  you can use it to decorate a function in the following cases:
        1. An unknown error occurs in the dynamic-to-static conversion process of the function;
        2. In the internal implementation of the function, it has two branches: dynamic branch and static branch;
        3. Users don't want to convert the function in the process of dynamic to static.
      b9a8ebd5
  14. 02 12月, 2020 1 次提交
    • H
      [Dy2stat] Fix PaddleGan Deoldify Model Dy2stat Problems (#29226) · aec05d81
      Huihuang Zheng 提交于
      This PR fixes several problems in dy2stat for Deoldify model in PaddleGan.
      
      In model, software engineer wrote if x.shape == y.shape, the Tenser shape is a tuple in dygraph so the == returns True/False, but in static graph the == becomes element-wise comparison, which is a different behavior. In this PR we reduce the element-wise comparison result.
      
      If software engineer write computations which uses parameters in hooks, the static graph can loss the parameter variable because we put param_guard at forward of a Layer. In this PR we made param_guard cover pre-hook and post-hook.
      
      In PaddleGan, software engineer calculated some parameter values in __init__ by running some dygraph code. Those code also run during dy2stat. So some variables may be assign as a VarBase (Tensor) first and then Variable, which raised an error. We fixed the bug in this PR by handling the case.
      
      TODO: We just added testcase for the 1. shape comparison. Should add test case for 2. and 3. But since we are chasing 2.0RC, I will do it in the near future PR
      aec05d81
  15. 01 12月, 2020 4 次提交
  16. 30 11月, 2020 3 次提交
    • Y
      fix docs (#29097) · a069e1ca
      yaoxuefeng 提交于
      a069e1ca
    • L
      Check whether there is any inplace operation affecting gradient calculation. (#27901) · 865a4598
      liym27 提交于
      * Add a class TensorInplaceVersion to count the inplace version and put it in framework::Tensor instead of Allocation or Variable.
      
      * Add a new attribute `_inplace_version` for VarBase.
      
      * Raise exception if an inplace operation can result in incorrect gradient computation.
      
      * Add a new interface _bump_inplace_version() for VarBase to bump the version whenever the Tensor is modified through an inplace operation.
      
      * For api assign, call _bump_inplace_version() when it's an inplace operation inn dynamic mode.
      
      * Use original var_wrapper if the inplace_version is not changed.
      
      * Replace SnapshotVarWrapperList with SnapshotVarWrapper to optimize performane.
      865a4598
    • W
      save model after jit.load (#28748) · 1476e1f9
      WeiXin 提交于
      * Changed a variable name error
      
      * Add comments
      
      * Move member functions of TranslatedLayer out of function
      
      * edit code according to review
      
      * Edit input argument of '_run_static_graph'
      
      * reset due to Segmentation fault
      
      * rename variables when stitching graph
      
      * modify code according CI
      
      * Add comments to '__i_m_p_l__'
      
      * remove blanks befor 'Get...'
      
      * edit code according to review
      
      * Add a comment to '_execution_method_creator'
      
      * Edit a comment to '_execution_method_creator'
      1476e1f9
  17. 28 11月, 2020 2 次提交
  18. 27 11月, 2020 3 次提交
  19. 26 11月, 2020 2 次提交
  20. 25 11月, 2020 2 次提交
  21. 24 11月, 2020 2 次提交
    • C
      Polish parallel api impl & doc details (#28980) · bb16c251
      Chen Weihang 提交于
      * polish parallel api impl & doc details
      
      * add unittest for coverage
      
      * remove spawn test in py2.7
      
      * add parallel api into white list
      bb16c251
    • C
      fix some docs (#29011) · 018e1699
      Chen Long 提交于
      * fix some docs test=develop;test=document_fix
      
      * add code example test=develop;test=document_fix
      
      * fix code example test=develop;test=document_fix
      
      * fix code example test=develop;test=document_fix
      
      * fix code example test=develop;test=document_fix
      018e1699