1. 03 11月, 2022 5 次提交
  2. 02 11月, 2022 8 次提交
  3. 01 11月, 2022 5 次提交
    • 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
    • R
      Support custom stream for standalone executor (#47411) · e12b6c04
      Ruibiao Chen 提交于
      * [Auto Parallel] Improve the c++ dist attr
      
      * [Auto Parallel] Modify test_program.py
      
      * Support custom stream for standalone executor
      Co-authored-by: NYulong Ao <aoyulong@baidu.com>
      e12b6c04
    • X
      [EinsumOp] Einsum support complex grad (#47514) · e930c576
      xiongkun 提交于
      * Einsum Support Complex
      
      * code fix
      
      * add unittest for complex grad with einsum
      
      * set rtol=1e-4
      
      * fix
      e930c576
    • N
      [CodeStyle][py2] remove `six` package (part2) (#47334) · 3592ba8c
      Nyakku Shigure 提交于
      * [CodeStyle][py2] remove `six` package (part2)
      
      * six.ensure_str
      
      * remove unused `import six`
      
      * remove six from BUILTIN_LIKELY_MODULES
      
      * remove six in example code
      
      * remove some decode
      
      * try to fix example code
      
      * fix MockEtcdClient get/get_prefix returns data type
      
      * fix MockEtcdClient get_prefix returns data
      
      * fix MockEtcdClient get returns data
      
      * remove `six` in pypi and conda requirements
      
      * fix MockEtcdClient add_watch_callback/add_watch_prefix_callback returns data type
      
      * refine MockEtcdClient
      3592ba8c
  4. 31 10月, 2022 5 次提交
  5. 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
  6. 29 10月, 2022 1 次提交
  7. 28 10月, 2022 1 次提交
  8. 26 10月, 2022 5 次提交
  9. 25 10月, 2022 6 次提交
  10. 24 10月, 2022 3 次提交