- 04 8月, 2023 1 次提交
-
-
由 JYChen 提交于
* WIP: start writing combined indexing get * list/tuple/Variable * getitem 80% * add setitem * add some unittest for setitem * lazy import * fix some setitem error * fix advance indexing with decreasing axes; fix strided_slice input name * combine int-tensor getitem is ok (without boolean support & broadcast); add getitem unittest for static * add broadcast & parse bool tensor for __getitem * [change getitem] _getitem_impl_ to _getitem_static, not deleting the former one * refine new getitem; fix ut in variable/var_base * add __getitem__ ut in dygraph * re-dispatch getitem for Py/CPP; fix strided_slice decrease axes error in dygraph * fix ut; support tensor in slice * [change setitem] _setitem_impl_ to _setitem_static, not deleting the former one * remove some UT (for some, temporarily) * add IndexError to solve timeout problem in static-mode * 1.temply forbideen all-False bool-indexput; 2.setitem_static will return new variable * xpu uses old stratege * rename dy2st setitem ut to avoid same-name problem * dy2st for new combined index * ut case for combine-index with dy2st * open ut with all-false-bool setitem * remove useless doc and _getitem_impl_ * change static res * fix static xpu
-
- 02 8月, 2023 1 次提交
-
-
由 wanghuancoder 提交于
-
- 01 8月, 2023 1 次提交
-
-
由 wanghuancoder 提交于
* test close old dygraph trace
-
- 31 7月, 2023 3 次提交
-
-
由 kangguangli 提交于
* fix bug: feed_with_place should consider variable existence * fix * fix build scope * change method to set feed var name * fix
-
由 Difer 提交于
* simple reaplce * for debug * fix bugs * fix some bugs * del fill_constant_batch_size_like
-
由 wanghuancoder 提交于
support stride
-
- 26 7月, 2023 2 次提交
-
-
由 JYChen 提交于
* remove api staticrnn * move select_input/output to static/controw flow * delete some func, only remain Switch * clean fluid.layers.controw_flow * remove fluid.layers.controlflow * fix conditional_block ut
-
由 zhouweiwei2014 提交于
-
- 22 7月, 2023 1 次提交
-
-
由 sneaxiy 提交于
* fix new launch * fix ps uit
-
- 21 7月, 2023 1 次提交
-
-
由 qiuwenbo 提交于
* [尝试] 给tensor增加一个属性, 这个属性是一个定值 1 * 暴露gradnode 并构建gradnode新的方法(用来测试)进行暴露给python python端可以访问 * 开发grad_fn、next_functions两个API 并暴露到python端- 做一些规范化处理 * 增加一个单元测试 * 优化 code-style * 将单侧文件迁到正确的位置 * 优化 code-style * 删除无用注释 * 解决 __main__ has no attribute * 修改单侧文件 * 修改单侧脚本-temp
-
- 19 7月, 2023 1 次提交
-
-
由 JYChen 提交于
* add paddle.static.setitem * add some help doc * support setitem * support machanism * add more unittest * remove usless code * raise error in static setitem * fix d2s UT * remove static only for both-used code * fix bool set_value in static, fix set_value_op UT * fix unittests * [May case some error]: remove inplace-version check * add two test case for dy2st * fix function in vision * fix dy2st setitem support, refine UT case * fix slice in static_mode * add ParametersMap * remove pop * modify place * [fix]: variable is also a tensor * rewrite some ut & remove slicetransformer in dy2st * solve error in static-mode * fix ut * return a result for set_array_write * fix test_set_value_op_xpu * code is different in dynamic / static mode --------- Co-authored-by: NAurelius84 <zhangliujie@baidu.com> Co-authored-by: NNotHaozi <zhangmenghao@baidu.com>
-
- 18 7月, 2023 2 次提交
-
-
由 zhangjingwei 提交于
* add_example_for_lazygurd * fix
-
由 hong 提交于
* fix new ir concat op bug * fix bug * using add_n_with_kernel instead of add_n impl * fix pd_op yaml bug * fix bug
-
- 11 7月, 2023 2 次提交
-
-
由 LoneRanger 提交于
replace the AdagradOptimizer 、adamaxOptimizer、AdadeltaOptimizer、RMSPropOptimizer、LambOptimizer and Momentum (#54152) * replace the AdadeltaOptimizer with Adadelta * replace the RMSPropOptimizer with RMSProp * replace the LambOptimizer with lamb * replace the momentum in contrib/optimizer.py with Momentum in python/paddle/optimizer/momentum.py * fix bug * fix bug * fix bug * fix bug of Lamp * fix bug of Lamp * fix bug of import * replace the AdamaxOptimizer with Admax and change the optimizer base for AdagradOptimizer * fix bug * fix bug * Update optimizer.py * fix bug * fix bug
-
由 qiuwenbo 提交于
* [尝试] 给tensor增加一个属性, 这个属性是一个定值 1 * 暴露gradnode 并构建gradnode新的方法(用来测试)进行暴露给python python端可以访问 * 开发grad_fn、next_functions两个API 并暴露到python端- 做一些规范化处理 * 增加一个单元测试 * 优化 code-style
-
- 10 7月, 2023 2 次提交
- 07 7月, 2023 1 次提交
-
-
由 LoneRanger 提交于
* remove the extend_optimizer_with_weight_decay function * Update __init__.py * fix bug * fix bug
-
- 06 7月, 2023 1 次提交
-
-
由 cyber-pioneer 提交于
* fix prim add fill_any_like bug * polish code
-
- 05 7月, 2023 1 次提交
-
-
由 cyberslack_lee 提交于
-
- 03 7月, 2023 2 次提交
-
-
由 LoneRanger 提交于
-
由 FormlessUnit 提交于
* add linear_compress API
-
- 30 6月, 2023 2 次提交
-
-
由 LoneRanger 提交于
replace the PolynomialDecay、NoamDecay、LinearLrWarmup、ReduceLROnPlateau in fluid with 2.0 version (#54806) * remove the ReduceLROnPlateau in fluid * fix bug * remove the PolynomialDecay in fluid * remove the LinearLrWarmup in fluid * fix bug * remove the NoamDecay in fluid * fix bug * fix bug * fix bug
-
由 xiaoguoguo626807 提交于
[prim] modify multiply_double_grad composite rules to solve paddlescience poiseuille_flow.py problem (#54908) * modify eular_beam * modify matmul infermeta * add test * modify timeout * modify mutiply_double nullptr * modify tanh_triple_gradnode create
-
- 29 6月, 2023 1 次提交
-
-
由 zhaoyingli 提交于
* add skip_gc_vars for 1f1b schedule mode * add pp_degree and pp_stage
-
- 28 6月, 2023 3 次提交
-
-
由 LoneRanger 提交于
* remove function sequence_conv_pool * fix test_glu.py * remove function scaled_dot_product_attention * remove function img_conv_group * remove function simple_img_conv_pool * delete the nets.py * fix bug * fix bug * fix bug * fix bug * fix bug * fix bug * Update test_image_classification.py * Update test_recognize_digits.py * Update test_recommender_system.py * Update test_image_classification_fp16.py * fix bug * fix bug * fix bug * remove the nets.py in fluid * fix bug * fix the codestyle * fix conflict * fix bug * Fix TODO
-
由 LoneRanger 提交于
* replace PiecewiseDecay(LearningRateDecay) with PiecewiseDecay(LRScheduler) * fix bug * fix bug * replace the StepDecay,MultiStepDecay,LambdaDecay with 2.0 version
-
由 ronnywang 提交于
* [ROCM] fix cupti, hipcub * update * update
-
- 27 6月, 2023 3 次提交
-
-
由 xiaoguoguo626807 提交于
* modify eular_beam * modify matmul infermeta * add test * modify timeout
-
由 LoneRanger 提交于
* remove the CosineDecay in fluid * Update test_basic_api_transformation.py
-
由 LoneRanger 提交于
* remove the NaturalExpDecay in fluid * fix bug * remove the ExponentialDecay in fluid * remove the InverseTimeDecay in fluid * remove the InverseTimeDecay class * fix bug
-
- 26 6月, 2023 1 次提交
-
-
由 hong 提交于
* add fetch kernel * support fetch var in new ir * fix bug * polish code * change array equal to np.testing * support feed in new ir * fix bug * try to hack combine op * add scope guard * revert atan2 op * polish code
-
- 25 6月, 2023 1 次提交
-
-
由 zhaoyingli 提交于
* auto parallel support pipeline scheduler with standalone executor * rm check_fetch * update cmakelist and flags env * rm set micro batch id * rm import * update utils func * raise error when merge tensor for return_numpy is False * fix _pipeline_opt * fix unittest
-
- 21 6月, 2023 1 次提交
-
-
由 Nyakku Shigure 提交于
-
- 16 6月, 2023 1 次提交
-
-
由 Ruibiao Chen 提交于
* Run plan in standalone executor * Update codes * Update atol and rtol for py3-CI * Add scope to cache key * Fix CI errors * Fix code style * Update codes * Remove fetch_name in standalone executor * Fix UT * Update codes * Fix new IR bug
-
- 12 6月, 2023 1 次提交
-
-
由 Nyakku Shigure 提交于
-
- 08 6月, 2023 1 次提交
-
-
由 jiangcheng 提交于
* [CINN] add paddle.device.is_run_with_cinn() api for running check * for pass ci converge * add check whl should compiled with cinn * fix ci coverage bug * remove exposed API * import is_run_with_cinn explicitly
-
- 02 6月, 2023 1 次提交
-
-
由 Ruibiao Chen 提交于
-
- 01 6月, 2023 2 次提交
-
-
由 zhaoyingli 提交于
* [AutoParallel] update while control_flow with pipeline * update process group instantiate * fix micro_bsz for reshard * update api for micro batch size * add strategy for dp optimization
-
由 tianshuo78520a 提交于
* mv all unittests test * fix error * fix error * fix * fix * del unittests * fix paddle_build.sh * fix * fix test * fix add test * fix * fix * fix * merge develop * fix * fix * fix * fix * fix * merge develop * fix test_async_read_write * fix test_async_read_write * merge develop * fix * fix import legacy_test * fix * fix * fix * fix * fix * fix * fix * fix * fix bug * fix * fix coverage test bug * fix * fix * fix * fix * fix * fix code sstyle * fix code * fix code * fix * fix * fix * del test_sequence_enumerate_op.py * fix
-