- 02 12月, 2022 1 次提交
-
-
由 LiYuRio 提交于
-
- 01 12月, 2022 2 次提交
- 29 11月, 2022 1 次提交
-
-
由 Nyakku Shigure 提交于
-
- 28 11月, 2022 1 次提交
-
-
由 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
-
- 25 11月, 2022 1 次提交
-
-
由 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
-
- 03 11月, 2022 1 次提交
-
-
由 kuizhiqing 提交于
-
- 01 11月, 2022 1 次提交
-
-
由 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)`
-
- 23 10月, 2022 1 次提交
-
-
由 Nyakku Shigure 提交于
* update config * re-blacken python code * temporarily disable date and diff_py_file * skip a format
-
- 11 10月, 2022 1 次提交
-
-
由 Nyakku Shigure 提交于
-
- 27 9月, 2022 1 次提交
-
-
由 Nyakku Shigure 提交于
* [CodeStyle] remove all future import * revert test_error.py * restore future import in example code
-
- 05 7月, 2022 1 次提交
-
-
由 zhiboniu 提交于
* change fluid.mean to paddle.mean * reverse some old code examples
-
- 16 6月, 2022 1 次提交
-
-
由 zhangbopd 提交于
* Unit test with tempfile to place the temporary files * Update test_custom_relu_model.py
-
- 05 6月, 2022 1 次提交
-
-
由 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
-
- 30 6月, 2020 1 次提交
-
-
由 Tao Luo 提交于
* add test_parallel_executor_profiler.py test=develop * set exec_strategy.num_threads=1 * skip check_profile_result * add TODO for test_profiler test=develop
-
- 23 6月, 2020 1 次提交
-
-
由 Tao Luo 提交于
test=develop
-
- 22 6月, 2020 1 次提交
-
-
由 Tao Luo 提交于
-
- 09 5月, 2020 1 次提交
-
-
由 Yiqun Liu 提交于
-
- 09 4月, 2020 1 次提交
-
-
由 Tao Luo 提交于
-
- 18 2月, 2020 1 次提交
-
-
由 wangchaochaohu 提交于
* add python flag to control profile level test=develop
-
- 16 4月, 2019 1 次提交
-
-
由 Dang Qingqing 提交于
test=develop
-
- 21 2月, 2019 1 次提交
-
-
由 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
-
- 22 8月, 2018 1 次提交
-
-
由 Xin Pan 提交于
-
- 15 8月, 2018 1 次提交
-
-
由 minqiyang 提交于
-
- 08 8月, 2018 1 次提交
-
-
由 minqiyang 提交于
-
- 17 7月, 2018 1 次提交
-
-
由 Wei Xu 提交于
-
- 29 3月, 2018 1 次提交
-
-
由 JiayiFeng 提交于
-
- 28 3月, 2018 1 次提交
-
-
由 fengjiayi 提交于
-
- 14 3月, 2018 1 次提交
-
-
由 Xin Pan 提交于
-
- 05 3月, 2018 2 次提交
- 01 3月, 2018 1 次提交
-
-
由 Xin Pan 提交于
-
- 26 2月, 2018 1 次提交
-
-
由 Xin Pan 提交于
-
- 24 2月, 2018 3 次提交
- 13 2月, 2018 1 次提交
-
-
由 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.
-
- 12 2月, 2018 1 次提交
-
-
由 qingqing01 提交于
-
- 24 1月, 2018 1 次提交
-
-
由 Yang Yu 提交于
The English of the previous API is bad.
-
- 23 1月, 2018 1 次提交
-
-
由 dangqingqing 提交于
-