1. 06 12月, 2022 1 次提交
  2. 02 12月, 2022 1 次提交
    • W
      [remove fluid] drop_out API (#48586) · 6af7b42b
      wangzhen38 提交于
      * [remove fluid] drop_out PI
      
      * [remove fluid] drop_out PI
      
      * [remove fluid] drop_out layernorm
      
      * [remove fluid] drop_out layernorm
      
      * [remove fluid] drop_out layernorm
      
      * [remove fluid] drop_out layernorm
      6af7b42b
  3. 01 12月, 2022 1 次提交
  4. 30 11月, 2022 1 次提交
  5. 29 11月, 2022 5 次提交
  6. 28 11月, 2022 4 次提交
  7. 26 11月, 2022 1 次提交
  8. 25 11月, 2022 1 次提交
  9. 24 11月, 2022 1 次提交
    • H
      [Phi Support CuDNN] Support ALL CuDNN (#47865) · 1623f1b4
      HongyuJia 提交于
      * support default use_gpudnn=True
      
      * fully support cudnn in phi
      
      * add header file
      
      * add white_list, verify accuracy
      
      * phi support all cudnn
      
      * opt affine_grad
      
      * try different arches of pretrained_model
      
      * try different arches of pretrained_model
      
      * add debug string
      
      * debug eager_method
      
      * add debug string, pass all local ctest
      
      * polish all debug code
      
      * delete use_cudnn relevant code autogen
      
      * fix depthwise_conv2d
      
      * Share all other members of Tensor except use_cudnn
      
      * polish codes according to review opinion
      
      * polish codes according to review opinion, fix bug
      
      * polish codes according to review opinion, opt performance
      
      * polish codes according to review opinion, fix pooling.py
      1623f1b4
  10. 23 11月, 2022 1 次提交
  11. 22 11月, 2022 6 次提交
  12. 21 11月, 2022 2 次提交
  13. 20 11月, 2022 1 次提交
  14. 17 11月, 2022 2 次提交
  15. 16 11月, 2022 1 次提交
  16. 14 11月, 2022 1 次提交
  17. 09 11月, 2022 1 次提交
  18. 08 11月, 2022 2 次提交
  19. 07 11月, 2022 2 次提交
  20. 03 11月, 2022 3 次提交
  21. 02 11月, 2022 1 次提交
  22. 01 11月, 2022 1 次提交
    • 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