- 07 8月, 2023 16 次提交
-
-
由 Nyakku Shigure 提交于
* [xdoctest] reformat example code with google style in `paddle/tensor/math` * preview, test=docs_preview * scale, test=docs_preview * stanh, test=docs_preview * multiplex, test=docs_preview * pow, test=docs_preview * max, test=docs_preview * others..., test=docs_preview * update trunc example code, test=docs_preview
-
由 gouzil 提交于
-
由 Ruibin Cheung 提交于
-
由 co63oc 提交于
-
由 xiongkun 提交于
* add paddle-symbolic-trace to paddle * add symoblic trace * delete swp * support Layer in symbolic trace * fix test-symbolic-trace, make symbolic trace return a StaticFunction * template the error message * fix some unittest * Modify the execution mode of test * Modify the module name * add dy2static unittest decorator * change some unittest files by @ast_only_test * fix unittest. * test-symbolic-trace * update test_write_python_container.py * update * fix test_param_parse.py * add submodule and ln -sf in cmakefile * update * update * fix some ast only errors * update * Polish ut * fix unittests * update * update * fix unittests * update * test warning ast only * update * Ast only some uts * Fix unitests * test_error ast only * update * update * Support build_strategy for sot * update * import sot as a third party module * update * update * Polish code * update * update * update * update * update * remove old fluid api and use paddle.nn.relu instead * fix * comment the print of ast code * add try-finally block * fix dy2static stop-gradient bugs * fix code * remove unused submodule and minor codestyle fix * fix * fix cast error * fix interpolate meets int64 in static model * add evalframe support for py311 * fix * fix err * switch ENABLE_FALL_BACK=False * fix * Fix CI for some unittest * add ENABLE_SOT * remove setup.py dependences --------- Co-authored-by: NNotHaozi <zhangmenghao@baidu.com> Co-authored-by: Nfeifei-111 <2364819892@qq.com> Co-authored-by: N0x45f <wangzhen45@baidu.com> Co-authored-by: NSigureMo <sigure.qaq@gmail.com>
-
由 lijialin03 提交于
-
由 tianshuo78520a 提交于
* Test Del paddle_bfloat * Del paddle_bfloat test
-
由 yangjianfengo1 提交于
* inplace tol * code style
-
由 Huihuang Zheng 提交于
Update Save/Load Interface to 2.0
-
由 DHANUSH N 提交于
-
由 zhangbo9674 提交于
* sovle conflict bug * fix bug
-
由 co63oc 提交于
-
由 tianshuo78520a 提交于
-
由 co63oc 提交于
-
由 tianshuo78520a 提交于
* Test Build;test=document_fix * Test Build;test=document_fix * Fix gcc error
-
由 umiswing 提交于
* Work for fa-2 padded fwd. Code to be cleaned. * Work for fa2 unpadded fwd. * Work for padded-bwd, dk get small diff on np.random.seed(0) * Anyway I pass paddle's utest, except return softmax without dropout. * Clean code. * Modify interface. * Clean code and add some check. * Easy compile for dev. * Fix ci. * Fix ci-build. * Add std c++17 option again. * Limit max job when compiling fa2. * Remove const_cast * Add fwd params, to be cleaned. * Clean code. * Add bwd params. * Clean code. * Add enforce. * Use v2.0.4 * Pass RNG state to fa2 capi * Fix review. * Add assert * Skip compile for sm less than 80.
-
- 06 8月, 2023 1 次提交
-
-
由 co63oc 提交于
-
- 05 8月, 2023 1 次提交
-
-
由 hong 提交于
* filter new ir inplace var set parameter * polish code * fix conflict * fix typo
-
- 04 8月, 2023 14 次提交
-
-
由 Difer 提交于
* replace embedding * replace sparse_embedding * fix some bugs * del embedding * repalce layers.embedding * fix type error
-
由 kangguangli 提交于
* fix bug: feed_with_place should consider variable existence * fix * fix build scope * change method to set feed var name * remove feed_with_place to placeholder * fix * rename to data * fix * fix
-
由 JZ-LIANG 提交于
-
由 hong 提交于
* refacot aot * update * fix bugs * remove some test * fix bug * fix bug * fix bug * fix bug * update
-
由 Fisher 提交于
1. `Parallel Compiler`: - 合并`FLAGS_cinn_parallel_compile_size`和`FLAGS_cinn_parallel_compile_thread`,通过`FLAGS_cinn_parallel_compile_thread`即可指定编译时使用的线程数,所有的`fusion_groups`将会平均分配到可用的线程上 - 增强编译完成后返回的信息,除`instruction`外,将`lowered_function`、`source_code`、`source_ptx`返回,供上层进一步使用 2. Debug信息: - 新增`FLAGS_ cinn_dump_group_lowered_func`、`FLAGS_cinn_dump_group_source_code`、`FLAGS_ cinn_dump_group_ptx`、`FLAGS_ cinn_dump_group_instruction`,可分别按`fusion_groups`储存编译的每个阶段中的中间代码 - 重新整理`graph_visualization`,所有的可视化图、单测代码均能正确分组储存 3. Bug修复: - 修复`MakeDirectory`不能正确创建文件夹的问题 4. 其他: - 清除了一些无用代码
-
由 Ruibin Cheung 提交于
* [clang-tidy] enable modernize-use-emplace * Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into modernize_use_emplace
-
由 Zhenghai Zhang 提交于
-
由 kangguangli 提交于
* add decorator for new_ir_test * fix bug and only test in ci-coverage * fix bug and only test in ci-coverage * fix * fix bugs * fix * fix
-
由 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
-
由 niuliling123 提交于
-
由 LoneRanger 提交于
-
由 chen 提交于
* inplace pass support reshape2 and flatten_contiguous_range * recover the modification to inplace_op_var_pass.cc
-
由 cyberslack_lee 提交于
* test=docs_preview * test=docs_preview * test=docs_preview * test=docs_preview
-
由 jiangfan06 提交于
-
- 03 8月, 2023 8 次提交
-
-
由 Yuang Liu 提交于
-
由 yangguohao 提交于
-
由 Wang Xin 提交于
-
由 Wang Xin 提交于
-
由 gouzil 提交于
* [clang-tidy] modernize-avoid-bind * rollback
-
由 yangjianfengo1 提交于
* fix fp 16 * bf16 rtol * fixed input * code style
-
由 wz1qqx 提交于
-
由 kangguangli 提交于
* fix bug: program translator not set value index correctly * fix slice for setparameter
-