1. 20 5月, 2021 1 次提交
    • W
      [Cherry-Pick]fix test_paddle_save_load and test_paddle_save_load_binary (#32949) (#33008) · c7848aca
      WeiXin 提交于
          test_paddle_save_load 单测随机挂:使用np.ndarray生成随机数组,可能生成nan,造成做对比时结果不匹配(nan != nan)。改为np.random.randn生成随机数组。
      
          test_paddle_save_load_binary随机挂: 如果一个字符串不能解析为Program,windows上会有超时风险。解决方法:不在windows平台不加载'不能解析为Program的字符串'。
      
      原始PR:#32949
      c7848aca
  2. 19 5月, 2021 3 次提交
  3. 18 5月, 2021 3 次提交
  4. 17 5月, 2021 1 次提交
  5. 12 5月, 2021 1 次提交
  6. 11 5月, 2021 1 次提交
  7. 07 5月, 2021 11 次提交
  8. 06 5月, 2021 11 次提交
  9. 05 5月, 2021 3 次提交
  10. 04 5月, 2021 1 次提交
  11. 01 5月, 2021 2 次提交
  12. 30 4月, 2021 2 次提交
    • X
      add flag to check_kernel launch (#32692) (#32709) · 09adf20f
      XiangGao 提交于
      09adf20f
    • P
      Add 12 inplace APIs including auto generated (#32573) (#32699) · 097d5f52
      pangyoki 提交于
      * add relu6_ hardsigmoid_ leaky_relu_ Inplace APIs
      
      * add softmax_with_cross_entropy_ Inplace API
      
      * add clip_ scale_ add_ subtract_ Inplace APIs
      
      * add wlist
      
      * fix parameter of scale api
      
      * add add_n_ Inplace API and remove log_ Inplace API
      
      * fix elementwise_add_ and elementwise_sub_ broadcast problem
      
      * elementwise inplace api give error message before run the op
      
      * use broadcast_shape in elementwise inplace op
      
      * add 8 inplace apis that is auto generated
      
      * add unittest for all inplace apis
      
      * add decorator for inplace apis in static mode
      
      * fix windows blas fail of exp inplace api, change array_equal to allclose
      
      * add flatten inplace api
      
      * add flatten unittest
      
      * fix flatten unittest
      
      * add decorator
      
      * fix grad.numpy in test_pylayer_op
      
      * unsupport softmax_with_cross_entropy_
      
      * add test_inplace_softmax_with_cross_entropy to static_mode_white_list
      
      * delete __all__ in inplace_utils
      
      * delete activation inplace function and add Tensor.inplace_func
      
      * change paddle.inplace_ to Tensor.inplace_
      
      * fix little problem
      
      * add paddle in inplace_utils
      097d5f52