- 29 7月, 2020 3 次提交
-
-
由 Chen Weihang 提交于
* simplify buffered reader to improve DataLoader performance * fix 22 failed unittests * fix cuda pinned context condition * fix test_reader_reset failed * fix two failed unittests * change unittest place * polish error messaage * polish cast op GetExpecctedKernelType * remove debug info in unittest
-
由 Pei Yang 提交于
-
由 Zhou Wei 提交于
-
- 28 7月, 2020 6 次提交
-
-
由 Pei Yang 提交于
-
由 Pei Yang 提交于
-
由 Dong Daxiang 提交于
* add more settings for distributed strategy Basically, DistributedStrategy has several parts of configurations: - BuildStrategy: the same as paddle.fluid.BuildStrategy, but the distributed arguments are moved out of BuildStrategy - ExecutionStrategy: the same as paddle.fluid.ExecutionStrategy - collective communication configs: nccl_comm_num, hierarchical allreduce and so on - distributed algorithms: async_update(mainly used in PS), lars, lamb and so on
-
由 Sylwester Fraczek 提交于
-
由 Chen Weihang 提交于
* polish framework error message part3 * polish details * fix error message print error
-
由 arlesniak 提交于
* Added DNNL cache management for DyGraph * move FLAGS_use_mkldnn to more general CMakeLists, getu use of the flag in ClearGradients * missing file * Fixes after review * Bringing back original idea of place for 'use_mkldnn' flag to be accessible from platform nad imperative. * Removed duplicate and added docs * Fixes for CI
-
- 27 7月, 2020 1 次提交
-
-
由 wangchaochaohu 提交于
-
- 24 7月, 2020 4 次提交
-
-
由 Zhen Wang 提交于
* fix the double grad bug for the star gan. test=develop * update the retain_graph parameter doc. test=develop * add the unit test for the retain_graph parameter. test=develop
-
由 Chen Weihang 提交于
* polish framework error meg part2 * polish details
-
由 Adam 提交于
-
由 wanghuancoder 提交于
* fix error msg report in ir/, about 19 files, test=develop * modified some unclear descriptions, test=develop * modified some unclear descriptions, test=develop * modify unit test pass_test.cc, because the error report in pass.cc is used by pass_test.cc, test=develop
-
- 23 7月, 2020 5 次提交
-
-
由 Leo Chen 提交于
* refine squeeze, test=develop * update squeeze, test=develop * refine compile-time infershape, test=develop * add more unittest, test=develop * follow comments, test=develop * add update_api, test=develop * follow comments, test=develop
-
由 joanna.wozna.intel 提交于
test=develop
-
由 cnn 提交于
* New features, add sinh and cosh op, test=develop * remove duplicate test function and remove out paramters, test=develop * Add out paramters temporary, remove later. test=develop * remove out args, PR 25570, test=develop * remove TestParameter, test=developx * add test api for static dygraph, test=develop * add backword unittests for sinh and cosh, test=develop
-
由 Zhang Ting 提交于
-
由 mapingshuo 提交于
add fp64 support in sequence_pool, test=develop
-
- 22 7月, 2020 4 次提交
-
-
由 Leo Chen 提交于
* fix best_fit_allocator_test on windows, test=develop * enable best_fit_allocator_test and test_math_op_patch_var_base, test=develop
-
由 GaoWei8 提交于
Fix the condition of concat dimension judgment.
-
由 donproc 提交于
-
由 石晓伟 提交于
* update ResetHolder, test=develop * add TensorShare for lite engine, test=develop * tensor data changed from copying to sharing, test=develop * supports xpu runtime, test=develop * fix code styles, test=develop
-
- 21 7月, 2020 5 次提交
-
-
由 Chen Weihang 提交于
* polish some error message in framework, test=develop * fix unittest error, test=develop * replace PADDLE_ENFORCE, test=develop * polish details based review comment, test=develop
-
由 Leo Chen 提交于
* add ci check for changing op-related api without core.ops, test=develop * generate api_source_md5 file when build, test=develop * add failed example, test=develop * add failed example, test=develop * handle exception, test=develop
-
由 Zhang Ting 提交于
-
由 Zhaolong Xing 提交于
* fix windows ci test=develop * fix ci error
-
由 Aurelius84 提交于
* add reinforcement learning model test=develop * align backward test=develop * add gym in paddle_build.sh test=develop * rm pip install in script test=develop * refine paddle_build.sh test=develop * fix sed error in macOS test=develop * polish code test=develop * fix scope problem * refine code by reviewer comment
-
- 20 7月, 2020 5 次提交
-
-
由 Chen Weihang 提交于
* polish install error hint msg, test=develop * fix variable error, test=develop * polish hint messgae again
-
由 wanghuancoder 提交于
* fix error msg report in ir/, about 5 files, test=develop * fix error msg report in ir/, about 5 files, test=develop * fix error msg report in ir/, about 5 files, test=develop
-
由 Zhou Wei 提交于
windows CI scripts for xly
-
由 Dong Daxiang 提交于
refactor fleet api under paddle.fleet update DistributedStrategy
-
由 zhangchunle 提交于
-
- 17 7月, 2020 2 次提交
-
-
由 Jacek Czaja 提交于
-
由 Aurelius84 提交于
* add reinforcement learning model test=develop * align backward test=develop * add gym in paddle_build.sh test=develop * rm pip install in script test=develop * refine paddle_build.sh test=develop * fix sed error in macOS test=develop * polish code test=develop
-
- 16 7月, 2020 3 次提交
-
-
由 zhangchunle 提交于
-
由 hong 提交于
-
由 Huihuang Zheng 提交于
Add Support for SelectedRows for Transpose OP and Fix a Bug That SelectedRows Cannot be Supported in SimNet (#25536) This PR fixes a bug that SelectedRows cannot be supported in SimNet. The reason of this bug is that dygraph basic_engine didn't copy var's type when the var needs to be accumulated during backward. So when a var is SelectedRows and needs to be accumulated, like SimNet which calls net for two times, the var's type will be changed to default LoDTensor thus bug happens. To fix it, we just also copy the type. Without this PR, the accumulated SelectedRows parameters in dygraph will be changed into LoDTensor. So when we fixed the bug of supporting SelectedRows in SimNet, we found `test_imperative_lod_tensor_to_selected_rows` failed and threw the error that SelectedRows was not supported for Transpose OP. To fix it, too, this PR also added support for SelectedRows for Transpose OP.
-
- 15 7月, 2020 2 次提交
-
-
由 Wilber 提交于
-
由 wanghuancoder 提交于
* fix paddle/fluid/framework/ir/ error msg reoprt, test=develop * modify error msg reoprt in ir/, about errortype, grammar, supplementary infor, test=develop * modified some unclear descriptions, test=develop * Modify the problem that report msg is less than 20 characters, test=develop
-