1. 02 12月, 2022 1 次提交
  2. 01 12月, 2022 2 次提交
  3. 29 11月, 2022 1 次提交
  4. 28 11月, 2022 1 次提交
    • J
      [Auto Parallel] Add matmul flops (#47816) · b35ec181
      Jianghai 提交于
      * add matmul_flops
      
      * add dropout,layer_norm ...
      
      * add dropout,layer_norm ...
      
      * add elementwise_flops
      
      * add dict check
      
      * add unitests
      
      * add equation for flops computation
      
      * regularized annotations
      b35ec181
  5. 25 11月, 2022 1 次提交
    • C
      [PROFILER] add flops for Profiler (#47766) · 3d1981ad
      Chitsing KUI 提交于
      * attr ready
      
      * op ip ready
      
      * start dynamic
      
      * end2end ok
      
      * input shape to map, stat by op
      
      * layer wip
      
      * first version ready
      
      * fix proto depds
      
      * fix profiler deps
      
      * fix flops typo, rm tuple shape
      3d1981ad
  6. 03 11月, 2022 1 次提交
  7. 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
  8. 23 10月, 2022 1 次提交
  9. 11 10月, 2022 1 次提交
  10. 27 9月, 2022 1 次提交
  11. 05 7月, 2022 1 次提交
  12. 16 6月, 2022 1 次提交
  13. 05 6月, 2022 1 次提交
    • S
      【code format check upgrade】 step2:yapf (#42944) · a072fca8
      Sing_chan 提交于
      * use yapf to format all python file
      
      * yapf exclude two unittests file for they rely on writing and reading file, and format will break them
      
      * disable diff_py_file because too many diff files cause command following failed
      a072fca8
  14. 30 6月, 2020 1 次提交
  15. 23 6月, 2020 1 次提交
  16. 22 6月, 2020 1 次提交
  17. 09 5月, 2020 1 次提交
  18. 09 4月, 2020 1 次提交
  19. 18 2月, 2020 1 次提交
  20. 16 4月, 2019 1 次提交
  21. 21 2月, 2019 1 次提交
    • D
      Profiler refine and add CUDA runtime api tracer (#15301) · a83e4704
      Dun 提交于
      * refine profiler && add runtime tracer
      
      * test=develop
      
      * test=develop
      
      * test=develop
      
      * test=develop
      
      * test=develop
      
      * test=develop
      
      * test=develop
      
      * test=develop
      
      * fix bug && test=develop
      
      * add thread id map && test=develop
      
      * test=develop
      
      * testing
      
      * bug fix
      
      * remove cuda event && refine code && test=develop
      
      * test=develop
      
      * test=develop
      
      * test=develop
      
      * fix windows temp file && test=develop
      
      * test=develop
      
      * fix windows bug && test=develop
      
      * fix start up issue && test=develop
      
      * code polish &&  test=develop
      
      * remove unused code && test=develop
      
      * add some cupti cbid && test=develop
      
      * add FLAGS_multiple_of_cupti_buffer_size && test=develop
      
      * fix compile error && test=develop
      
      * add keyword && test=develop
      
      * fix && test=develop
      
      * code polish && test=develop
      a83e4704
  22. 22 8月, 2018 1 次提交
  23. 15 8月, 2018 1 次提交
  24. 08 8月, 2018 1 次提交
  25. 17 7月, 2018 1 次提交
  26. 29 3月, 2018 1 次提交
  27. 28 3月, 2018 1 次提交
  28. 14 3月, 2018 1 次提交
  29. 05 3月, 2018 2 次提交
  30. 01 3月, 2018 1 次提交
  31. 26 2月, 2018 1 次提交
  32. 24 2月, 2018 3 次提交
  33. 13 2月, 2018 1 次提交
    • X
      Run Python OP tests in a single Python process to improve test time. (#8362) · cde6241a
      Xin Pan 提交于
      Currently, our tests run with 2 GPUs, the init time is absurdly long:
      about 4s for each process.  Currently, we run each OP test on
      different processes. This PR:
      
      1. create cmake function py_test_modules which will generate the
      Makefile that runs a list of Python unittest module in a single Python
      process.
      
      2. move all "python unittest compatible" (e.g., used the unittest
      package, not just a regular python file). from fluid/tests to
      fluid/tests/unittests.
      
      3. cmake now will run all OP tests in fluid/tests/unittests in a
      single process, except the time-consuming tests, they are separated
      into different processes to utilize parallelism. Please make sure to
      use the unittest package if you put the python test file in
      fluid/tests/unittests
      
      4. remove all exit(0) from fluid/tests/unittests/*.py, exit(0) is used
      to disable unittest, we can not do it when running all tests in a
      single process since it will terminate the process without running the
      other tests. Instead, the test is disabled in
      fluid/tests/unittests/CMakeLists.txt. FIXME is added for each disabled
      item. Please disable the unittest from
      fluid/tests/unittests/CMakeLists.txt, instead of adding exit(0) to the
      Python file, for all Python file in fluid/tests/unittests/.
      
      5. add an option WITH_FAST_BUNDLE_TEST. When OFF, will run the unit
      tests in separate process so that they can be tested individually.
      cde6241a
  34. 12 2月, 2018 1 次提交
  35. 24 1月, 2018 1 次提交
  36. 23 1月, 2018 1 次提交