- 08 5月, 2023 1 次提交
 - 
- 
由 zhoutianzi666 提交于
* add ```converter_type``` for op converter
 
 - 
 - 04 5月, 2023 1 次提交
 - 
- 
由 Yuanle Liu 提交于
 
 - 
 - 28 4月, 2023 1 次提交
 - 
- 
由 duanyanhui 提交于
 
 - 
 - 27 4月, 2023 1 次提交
 - 
- 
由 zhouweiwei2014 提交于
[cherry-pick2.5] [Zero-Dim] Support all/any/min/max/prod/logsumexp/amax/amin/some loss output 0D (#53192)
 
 - 
 - 24 4月, 2023 1 次提交
 - 
 - 23 4月, 2023 1 次提交
 - 
- 
由 JYChen 提交于
* support 0-D output and 0-D as indice in __getitem__ * fix tests * fix inference and UT * add unittest for setitem * fix xpu test * fix xpu 0-d
 
 - 
 - 20 4月, 2023 2 次提交
 - 
- 
由 chalsliu 提交于
 - 
由 Yuanle Liu 提交于
* remove c++14 assert and remove include tensor.h in phi * update * remove delete_cast_op_pass
 
 - 
 - 17 4月, 2023 1 次提交
 - 
- 
由 JingZhuangzhuang 提交于
 
 - 
 - 14 4月, 2023 1 次提交
 - 
- 
由 zhupengyang 提交于
 
 - 
 - 13 4月, 2023 6 次提交
 - 
- 
由 Yuanle Liu 提交于
 - 
由 Wangzheee 提交于
* Paddle-Trt: Replace fc mul matmul matmul_v2 with matrix_multiply
 - 
由 zhoutianzi666 提交于
* fix bilinear_interp_v2 && some other bugs in trt 7011 * add version check in test_trt_convert_bilinear_interp_v2.py
 - 
由 zhupengyang 提交于
 - 
由 Yuanle Liu 提交于
 - 
由 gaoziyuan 提交于
--------- Co-authored-by: NZhang Jun <ewalker@live.cn> 
 - 
 - 12 4月, 2023 3 次提交
 - 
- 
由 gaoziyuan 提交于
 - 
由 Yuanle Liu 提交于
 - 
由 Yuanle Liu 提交于
* update save model * update
 
 - 
 - 11 4月, 2023 1 次提交
 - 
- 
由 Yuanle Liu 提交于
 
 - 
 - 10 4月, 2023 2 次提交
 - 
- 
由 xiaoxiaohehe001 提交于
* Support two inputs of multihead attention named qk_multihead
 - 
由 张春乔 提交于
* mv WITH_ASCEND_CL * mv WITH_ASCEND * rollback * remove WITH_ASCEND * remove WITH_ASCEND
 
 - 
 - 08 4月, 2023 1 次提交
 - 
- 
由 张春乔 提交于
* mv WITH_ASCEND_CL * mv WITH_ASCEND * rollback
 
 - 
 - 07 4月, 2023 1 次提交
 - 
- 
由 wenzhe.wang 提交于
fix bugs Co-authored-by: Nwenzhe.wang <wenzhe.wang@xdxct.com> 
 - 
 - 06 4月, 2023 1 次提交
 - 
- 
由 Xinyu Chen 提交于
 
 - 
 - 04 4月, 2023 3 次提交
 - 03 4月, 2023 4 次提交
 - 
- 
由 engineer1109 提交于
 - 
由 zhoutianzi666 提交于
* forbid int32 tensor as arg_max's input
 - 
由 Yuanle Liu 提交于
 - 
由 wz1qqx 提交于
 
 - 
 - 31 3月, 2023 3 次提交
 - 
- 
由 Galaxy1458 提交于
* this is a test pr, test=develop * solve the four [-Wterminate] warning, test=develop * solve the four [-Wterminate] warning, test=develop * new fix [-Wterminate], test=delelop * new fix [-Wterminate], test=delelop * new fix [-Wterminate], test=delelop * new , test = develop * new , test = develop * new , test = develop * new , test = develop * new , test = develop * new , test = develop
 - 
由 YuanRisheng 提交于
 - 
由 张春乔 提交于
* autofix Co-authored-by: NLiyulingyue <83450930+Liyulingyue@users.noreply.github.com> * revert changes in python/paddle/distributed/fleet/utils/hybrid_parallel_util.py * empty commit, trigger ci * fix test_slice --------- Co-authored-by: NSigureMo <sigure.qaq@gmail.com>
 
 - 
 - 30 3月, 2023 2 次提交
 - 
- 
由 zhupengyang 提交于
 - 
由 zhupengyang 提交于
 
 - 
 - 29 3月, 2023 1 次提交
 - 
- 
由 zhupengyang 提交于
 
 - 
 - 28 3月, 2023 2 次提交
 - 
- 
由 Feiyu Chan 提交于
Add basic functionalities to support Scalar & Scalars in operator attribute. 1. extend allowed types in operator's attribute type, add `paddle::experimental::Scalar`, add corresponding protobuf Message types; 2. Scalar enhancement, add formatting, equality; 3. add code to handle Scalar & Scalars in opmaker, conversion from paddle operator to phi kernel, opdesc construction and manipulation, tensorrt converter, tracer, operator construction, etc; 4. bind `paddle::experimental::Scalar` to python, as `libpaddle.Scalar`; 5. add functionality to canonicalize attribute map according to OpProto(if the op the attribute map used for has an OpProto); 6. add code to manipulate Scalar proto message via protobuffer python API; Add unittests. 1. add test cases for formatting, equality for Scalars, and WrapAsScalars; 2. add test cases for 'casting' between different morphs of attributes; 3. add test cases for extracting scalar & scalars from attribute; 4. add test cases for CanonicalizeScalarAttrs(and fix a bug in type index offset); 5. fix gmock's library filename on windows platform. 6. clean code: use canonicalize_attrs instead of inlining the function; 7. add test cases for libpaddle.Scalar in python code. 8. add test cases for `make_scalar_proto`, which manipulate proto message `Scalar` via protobuffer python API.
 - 
由 Zhang Jun 提交于
* Remove log about fluid * Remove useless forward declarations * Fix uninitialization warning (trt onehot)
 
 -