- 27 9月, 2020 1 次提交
-
-
由 danleifeng 提交于
-
- 14 8月, 2020 1 次提交
-
-
由 wangchaochaohu 提交于
-
- 30 7月, 2020 1 次提交
-
-
由 wawltor 提交于
Update the code for the compare_ops, update the api and doc
-
- 19 5月, 2020 1 次提交
-
-
由 liym27 提交于
* Support to create LoDTensorArray in control flow (cond and while_loop) * Fix bug: return LoDTensorArray in while_loop * Change code in list_transformer.py to accommodate the new features.
-
- 14 5月, 2020 1 次提交
-
-
由 Cindy Cai 提交于
* test=develop, test=document_fix * test=develop, test=document_fix Co-authored-by: Nswtkiwi <1208425345@qq.com>
-
- 13 5月, 2020 1 次提交
-
-
由 danleifeng 提交于
fix check info for flatten hash is_empty op; test=develop
-
- 08 5月, 2020 2 次提交
-
-
由 Huihuang Zheng 提交于
1. To make ProgramTranslator to support `assert` grammar, this PR adds `assert` python API and C++ code. 2. Fix a bug: graph_pattern_detector.h #include <gtest/gtest_prod.h> but didn't declared dependency at CMakeLists, which can cause single build failure. 3. Refactoring `Formatter` in print_op to make it reusable and reuse the formatter to print in assert op.
-
由 guofei 提交于
目前在while_loop的执行过程中,loop_vars中的变量在每次的循环中都会进行拷贝,但是LoDTensorArray类型的变量在while循环体中已经完成了读/写的操作,即完成了更新,此时在进行拷贝属于冗余的操作,故该PR跳过每次循环中loop_vars中LoDTensorArray类型的变量的复制过程。 在PaddleCV/ocr_recognition/atention模型的预测过程中进行性能测试: |性能|with this PR|without this PR|提升| |---|---|---|---| |速度|4957.4ms|4978.47ms|0.4%|
-
- 06 5月, 2020 1 次提交
-
-
由 liym27 提交于
* Replace dygraph_to_static_func with @declarative or program_translator.get_func in test_list.py * Add comments in ConditionalBlock. * Support list pop last item. * Support pop the i-th item. * Support an empty tensor array as Input in assign op and set the kernel type is float.
-
- 27 4月, 2020 1 次提交
-
-
由 Chen Weihang 提交于
* add print transformer & unify print format, test=develop * remove using of dygraph_to_static_func, test=develop * remove python stdout capture, test=develop * fix compatibility problems for PY2, test=develop * fix detail error, test=develop * fix type analysis bug, test=develop * fix print tuple compatible error in PY2, test=develop * replace get_func to declarative, test=develop * fix detail bug, test=develop * fix some detail problems, test=develop * change visit_call in print transformer, test=develop
-
- 21 4月, 2020 1 次提交
-
-
由 myq406450149 提交于
* lod_rank_table error message enhance. test=develop
-
- 20 4月, 2020 1 次提交
-
-
由 gfwm0502 提交于
test=develop test=document_fix
-
- 18 4月, 2020 1 次提交
-
-
由 kinghuin 提交于
fix compare and logical ops cond/out parameter doc bug,correct the dtype message
-
- 17 4月, 2020 2 次提交
- 15 4月, 2020 1 次提交
-
-
由 gfwm0502 提交于
As the title.
-
- 14 4月, 2020 1 次提交
-
-
由 kinghuin 提交于
* optimize compare and logical ops error info * add out and cond dtype test
-
- 13 4月, 2020 1 次提交
-
-
由 myq406450149 提交于
* lod_tensor_to_array error message enhance. test=develop
-
- 12 4月, 2020 2 次提交
-
-
由 mamingjie-China 提交于
API(has_inf, has_nan, cumsum, fsp_matrix, increment) error message enhancement, test=develop (#23769) * API(argsort, argmax, argmin, cast, diag) add error message,and the same time add the test cases for those apis.
-
由 Huihuang Zheng 提交于
This PR enhances error messages of several API/OPs: ParallelExecutor (python && C++) Executor (python && C++) StaticRNN (python) IfElse (python) cond (python) split_lod_tensor (python && C++)
-
- 11 4月, 2020 1 次提交
-
-
由 liym27 提交于
-
- 10 4月, 2020 2 次提交
-
-
由 GaoWei8 提交于
-
由 wangchaochaohu 提交于
-
- 09 4月, 2020 3 次提交
-
-
由 Huihuang Zheng 提交于
API/OP (ConditionalBlock) error message enhancement (#23480)
-
由 wangchaochaohu 提交于
-
由 liym27 提交于
-
- 08 4月, 2020 1 次提交
-
-
由 liym27 提交于
* API (Switch) error message enhancement. * fix bug: dtype of out in api isfinite is set incorrectly. The dtype should be bool.
-
- 03 4月, 2020 2 次提交
- 02 4月, 2020 1 次提交
-
-
由 songyouwei 提交于
* support tensor array create read write in dygraph test=develop * minor fix test=develop * support tensor_array_to_tensor test=develop * add while loop case and err msg test=develop * refine ut test=develop
-
- 25 3月, 2020 1 次提交
-
-
由 Aurelius84 提交于
* Polish error Info in while_loop test=develop
-
- 19 3月, 2020 1 次提交
-
-
由 Aurelius84 提交于
* support to modify dict and list in while_loop test=develop * polish code test=develop
-
- 18 3月, 2020 1 次提交
-
-
由 liym27 提交于
-
- 26 2月, 2020 1 次提交
-
-
由 songyouwei 提交于
* dygraph support cond op test=develop * unittest coverage test=develop * fix coverage test=develop * fix for coverage test=develop * refine TypeError msg test=develop * remove restrict test=develop
-
- 25 2月, 2020 2 次提交
-
-
由 songyouwei 提交于
* dygraph support while_loop op test=develop * refine assign test=develop
-
由 Huihuang Zheng 提交于
As the title
-
- 23 2月, 2020 1 次提交
-
-
由 tianshuo78520a 提交于
-
- 17 2月, 2020 1 次提交
-
-
由 guofei 提交于
Modify english document and unittest of while_loop
-
- 14 2月, 2020 1 次提交
-
-
由 guofei 提交于
As the title.
-
- 11 2月, 2020 1 次提交
-
-
由 guofei 提交于
This PR makes assign op support LoDTensorArray and enable the loop_vars in while_loop to support tuple or list.
-