- 24 3月, 2021 1 次提交
-
-
由 Qi Li 提交于
Co-authored-by: Nronnywang <524019753@qq.com>
-
- 23 3月, 2021 2 次提交
-
-
由 Feiyu Chan 提交于
-
由 gongweibao 提交于
fix launch ps ut test=develop
-
- 22 3月, 2021 3 次提交
-
-
由 zlsh80826 提交于
* nearest_interp op converter w/ dynamic/static * fix data_layout include * add trt nearest unit_test * add nearest_interp NHWC test * update trt nearest interp nhwc testcase * remove asterisk for python2 compatibility * add empty line to prevent conflict * nearest_interp op converter w/ dynamic/static * fix data_layout include * add trt nearest unit_test * add nearest_interp NHWC test * update trt nearest interp nhwc testcase * remove asterisk for python2 compatibility * add empty line to prevent conflict * change the priority of out_h, out_w
-
由 arlesniak 提交于
-
由 lilong12 提交于
* add 1f1b scheduler for pp, test=develop
-
- 21 3月, 2021 1 次提交
-
-
由 ronnywang 提交于
-
- 19 3月, 2021 4 次提交
-
-
由 Jacek Czaja 提交于
-
由 ronnywang 提交于
-
由 Adam Osewski 提交于
-
由 ronnywang 提交于
-
- 18 3月, 2021 2 次提交
- 17 3月, 2021 1 次提交
-
-
由 Zhang Ting 提交于
-
- 16 3月, 2021 2 次提交
-
-
由 gongweibao 提交于
-
由 ronnywang 提交于
-
- 15 3月, 2021 1 次提交
-
-
由 Kaipeng Deng 提交于
* add dict/str/list supprot for DataLoader. test=develop
-
- 12 3月, 2021 3 次提交
-
-
由 Shang Zhizhou 提交于
* add serialize unittest * fix element_op trt plugin serialize bug
-
由 hong 提交于
-
由 Qi Li 提交于
-
- 11 3月, 2021 3 次提交
-
-
由 Aurelius84 提交于
* Fix bug with static_convert_var_shape * replace dot with dash
-
由 chajchaj 提交于
* add softmax_switch for softmax_with_cross_entropy_op, test=develop * delete using EigenMatrix in softmax_with_cross_entropy_op.h, test=develop * add REGISTER_OP_VERSION for softmax_switch attr of softmax_with_cross_entropy_op, test=develop
-
由 Aurelius84 提交于
* fix bug with jit.save * refine code
-
- 10 3月, 2021 3 次提交
- 09 3月, 2021 4 次提交
-
-
由 wangguanzhong 提交于
-
由 wangguanzhong 提交于
-
由 Qi Li 提交于
-
由 Jacek Czaja 提交于
-
- 08 3月, 2021 1 次提交
-
-
由 Qi Li 提交于
-
- 05 3月, 2021 1 次提交
-
-
由 liuyuhui 提交于
[Kunlun]Multi xpu dygraph performance optimization , add distributed.spawn support for multi xpu and some bug-fixes (#31130)
-
- 04 3月, 2021 6 次提交
-
-
由 liym27 提交于
-
由 Zhang Ting 提交于
-
由 Zhang Ting 提交于
* improve performance of depthwise_conv2d * add unittest
-
由 liym27 提交于
-
由 Huihuang Zheng 提交于
Fix Read-Only Attribute as while_loop Output: Usually, our convert_while_loop will be like: ``` [a, b, c] = paddle.jit.dy2static.convert_while_loop( condition_name, body_name, [a, b, c]) ``` where a, b, c are in loop_var_names. However, if loop_var_names contains property such as foo.x, we cannot assign the attribute as output of convert_while_loop because Python property is a kind of read-only attribute. To handle the case, we replace the attributes which are output of convert_while_loop with generated variables, then if we know the attribute is not read-only at runtime, we assign the attribute. The created statements are like: ``` [a, b, __attribute_variable_1] = paddle.jit.dy2static.convert_while_loop( condition_name, body_name, [a, b, foo.x]) if not isinstance(getattr(type(foo), x, None), property): foo.x = __attribute_variable_1 ```
-
由 jakpiase 提交于
-
- 03 3月, 2021 2 次提交