Paddle
Paddle copied to clipboard
PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署)
### PR types Bug fixes ### PR changes Others ### Describe Fix ppyoloe、MobileNetV3_large、Ernie 3.0-Medium and bert acc drop bugs. 1. Avoid the problem that the weights are quantize and dequantized...
### PR types Bug fixes ### PR changes OPs ### Describe + Fixed elementwise_sub mkldnn kernel BUG while specifying x.shape as [180, 1] and y.shape as [1, 256] . In...
### PR types Others ### PR changes Others ### Describe add phi reduce_sum 增加单测里面的反向检查
### PR types Performance optimization ### PR changes OPs ### Describe 实验开发环境: 硬件:Tesla-P4 软件环境:CUDA 11.2,CuDNN 8 | Case No. | input_shape | data_type | Paddle_modify Perf(us) | Perf_over_paddle_origin(%) | Perf_over_pytorch(%)...
### PR types Others ### PR changes OPs ### Describe ATT
### PR types Function optimization ### PR changes OPs ### Describe add int64 support for mlu one_hot_v2 kernel
### PR types Others ### PR changes Others ### Describe 通用plugin机制中,为unfold, scatter_nd_add, reciprocal, pad3d 增加符号化shape 推导函数,使得通用plugin 机制支持这些Op。 主要修改: `dynamic_shape_infermeta.cc`中增加了对应 op 的符号化推导函数: `test_trt_convert_pad3d.py`, `test_trt_convert_unfold.py`, `test_trt_convert_scatter_nd_add.py`, `test_trt_convert_reciprocal.py`,为对应的单测。 由于 pad3d 的 padding信息,可能是一个 vector输入,这种情形下,通用plugin暂不支持,op_teller中返回...
### PR types Others ### PR changes Others ### Describe [Cherry-Pick](https://github.com/PaddlePaddle/Paddle/pull/46090)
test
### PR types Bug fixes ### PR changes Others ### Describe Test only
### 问题描述 Please describe your issue Python supports type hint from version 3.5 https://docs.python.org/3/library/typing.html. And we can write codes like this ``` def greeting(name: str) -> str: return 'Hello '...