1. 30 11月, 2022 2 次提交
    • R
      [Eager] fix recompute for stop_gradient and inpalce (#48471) · 31e380ce
      Roc 提交于
      * fix recompute for stop_gradient and inpalce
      
      * fix ut
      
      * update
      31e380ce
    • W
      [remove fluid] under unittesets (#48212) · 7d6263e6
      wangzhen38 提交于
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      
      * [remove fluid] under unittesets
      7d6263e6
  2. 29 11月, 2022 1 次提交
  3. 28 11月, 2022 1 次提交
    • X
      【fluid api clear】Remove reduce sum (#48330) · 8d00f76e
      xiaoguoguo626807 提交于
      * remove fluid.reduce_sum
      
      * remove fluid.reduce_sum
      
      * modify axis and import paddle
      
      * modify keepdim and out_name
      
      * modift unittest
      
      * modift unittest
      
      * modify CI_static and loss.py
      
      * modify test_mse_loss
      
      * modify static ci
      
      * modify static ci datatype
      
      * add import paddle in test
      
      * fix conflict
      
      * fix conflict
      
      * modify ci
      
      * modify ci
      
      * fix_conflict
      
      * fix bug
      
      * code_style
      8d00f76e
  4. 26 11月, 2022 1 次提交
  5. 25 11月, 2022 1 次提交
  6. 23 11月, 2022 3 次提交
    • V
      [Clean Fluid API]Remove API: label_smooth (#47952) · a0f47350
      Vvsmile 提交于
      * Remove API: label_smooth (replace with paddle.nn.functional.label_smooth)
      	Replace the paddle.fluid.layers.label_smooth with the
      paddle.nn.functional.label_smooth
      
      * modify the call of label_smooth from old style to new style
      a0f47350
    • G
      【fluid clean】 move out LayerList, ParameterList, Sequential from fluid (#48197) · a914d68e
      GGBond8488 提交于
      * fluid clean move out LayerList, ParameterList, Sequential from fluid
      
      * copy Sequential from fluid to paddle.nn
      
      * replace fluid LayerList,ParamterList, Sequential in unit test file
      
      * add omit unit test file use paddle.nn.Sequential
      
      * remove numpy and use paddle.uniform instead
      a914d68e
    • X
      【fluid api clear】remove transpose (#47917) · b994c89d
      xiaoguoguo626807 提交于
      * remove transpose
      
      * codestyle check
      
      * modify CI_STATIC
      
      * modify CI_STATIC
      
      * modify enable static()
      
      * remove unused import
      
      * fix conflict about stack
      
      * fix conflict about stack
      
      * fix conflict about stack
      
      * endless conflict
      b994c89d
  7. 22 11月, 2022 2 次提交
    • W
      [remove fluid] under fleet meta_optimizers_wz (#47888) · 51b08123
      wangzhen38 提交于
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * update
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      
      * [remove fluid] under fleet meta_optimizers_wz
      51b08123
    • (fluid清理)remove reshape in nn.py under fluid (#47967) · 4244fa6e
      傅剑寒 提交于
      * remove reshape in nn.py under fluid
      
      * remove reshape reference
      
      * fix test case
      
      * fix test case in distribution.uniform
      
      * remove fluid reshape reference
      4244fa6e
  8. 17 11月, 2022 1 次提交
  9. 10 11月, 2022 1 次提交
  10. 09 11月, 2022 1 次提交
  11. 08 11月, 2022 1 次提交
  12. 07 11月, 2022 1 次提交
  13. 03 11月, 2022 2 次提交
  14. 02 11月, 2022 1 次提交
  15. 01 11月, 2022 2 次提交
    • N
      [CodeStyle][E711] use `is`/`is not` for comparison with `None` (#47452) · a35a4a53
      Nyakku Shigure 提交于
      * [CodeStyle][E711] use `is`/`is not` for comparison with `None`
      
      * `self.assertTrue($A is None)` -> `self.assertIsNone($A)`
      
      * `self.assertTrue($A is not None)` -> `self.assertIsNotNone($A)`
      
      * `self.assertFalse($A is None)` -> `self.assertIsNotNone($A)`
      
      * `self.assertEqual($A, None)` -> `self.assertIsNone($A)`
      
      * `self.assertNotEqual($A, None)` -> `self.assertIsNotNone($A)`
      a35a4a53
    • N
      [CodeStyle][E712] use `if cond`/`if cond is True` for comparison with `True` (#47464) · 5a2ab683
      Nyakku Shigure 提交于
      * [CodeStyle][E712] use `if cond`/`if cond is True` for comparison with `True`
      
      * revert changes in fluid
      
      * revert unrelated file
      
      * revert changes in norm
      
      * revert changes in auto_parallel_amp
      
      * fix norm and auto_parallel_amp
      
      * revert a typo fix due to fixed at #47477
      5a2ab683
  16. 30 10月, 2022 1 次提交
    • R
      Fix gen cmake (#47457) · 605b3f98
      Roc 提交于
      * maping from dist name scope to single name scope
      
      * update
      
      * fix gen cmake
      
      * support runtype is '' when using test_runner.py
      
      * Revert "fix gen cmake"
      
      This reverts commit d7a653d33aeacb8bb4a13957c9961ed9f626a18f.
      
      * update gen-ut-cmakelist; test=document_fix
      
      * revert code; test=document_fix
      605b3f98
  17. 29 10月, 2022 1 次提交
  18. 23 10月, 2022 1 次提交
  19. 20 10月, 2022 1 次提交
  20. 19 10月, 2022 2 次提交
  21. 17 10月, 2022 1 次提交
  22. 12 10月, 2022 1 次提交
  23. 09 10月, 2022 1 次提交
  24. 29 9月, 2022 1 次提交
  25. 28 9月, 2022 1 次提交
  26. 27 9月, 2022 1 次提交
  27. 21 9月, 2022 1 次提交
  28. 20 9月, 2022 2 次提交
  29. 19 9月, 2022 2 次提交
  30. 15 9月, 2022 1 次提交
    • Y
      [Auto Parallel] Improve the APIs (#45776) · b042a3b1
      Yulong Ao 提交于
      * [Auto Parallel] Use c++ dist attr in the completion process
      
      * [Auto Parallel] Add minor changes
      
      * [Auto Parallel] Use c++ dist attr in the completion process
      
      * [Auto Parallel] Add minor changes
      
      * [Auto Parallel] Add the serialization process for dist attrs
      
      * [Auto Parallel] Remove unnecessary comments
      
      * [Auto Parallel] Fix some bugs
      
      * [Auto Parallel] Fix the code style
      
      * [Auto Parallel] Remove unnecessary impls
      
      * [Auto Parallel] Fix the importing error
      
      * [Auto Parallel] Fix the copy from bugs of op dist attr
      
      * [Auto Parallel] Replace the use of constexpr if
      
      * [Auto Parallel] Redesign the shard_tensor, shard_op and ProcessMesh
      
      * [Auto Parallel] Change API of the completion unittest
      
      * [Auto Parallel] Fix the bug when set_attr an int
      
      * [Auto Parallel] Add the unittest for the serialization
      
      * [Auto Parallel] Add some unit tests
      
      * [Auto Paralle] Unify the strategy
      
      * [Auto Parallel] Improve the engine api
      
      * [Auto Parallel] Reset the changes made to the framework
      
      * [Auto Parallel] Change the engine unittest
      
      * [Auto Parallel] Update API of the completion and partitioner
      
      * [Auto Parallel] Update unit tests using engine api
      
      * update shard annotation
      
      * [Auto Parallel] Remove the modifications of other modules
      
      * [Auto Parallel] Add docs for APIs
      
      * add new strategy
      
      * [Auto Parallel] Replace the logger
      
      * [Auto Parallel] Restore the test_program.py
      
      * [Auto Parallel] Change the import rules
      
      * [Auto Parallel] Add the examples for Engine
      
      * [Auto Parallel] Do some minor changes
      
      * [Auto Parallel] Remove yaml dependency
      
      * [Auto Parallel] Fix the unittests
      
      * add valid after train
      
      * bug fix
      Co-authored-by: Nzhaoyingli <zhaoyingli@baidu.com>
      Co-authored-by: Ncaozhou <caozhou@radi.ac.cn>
      Co-authored-by: Ncaozhou <48191911+Caozhou1995@users.noreply.github.com>
      b042a3b1
  31. 14 9月, 2022 1 次提交