1. 01 6月, 2023 2 次提交
    • zhouweiwei2014's avatar
    • T
      mv all unittests test (#53235) · b0e86d55
      tianshuo78520a 提交于
      * mv all unittests test
      
      * fix error
      
      * fix error
      
      * fix
      
      * fix
      
      * del unittests
      
      * fix paddle_build.sh
      
      * fix
      
      * fix test
      
      * fix add test
      
      * fix
      
      * fix
      
      * fix
      
      * merge develop
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * merge develop
      
      * fix test_async_read_write
      
      * fix test_async_read_write
      
      * merge develop
      
      * fix
      
      * fix import legacy_test
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix bug
      
      * fix
      
      * fix coverage test bug
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix
      
      * fix code sstyle
      
      * fix code
      
      * fix code
      
      * fix
      
      * fix
      
      * fix
      
      * del test_sequence_enumerate_op.py
      
      * fix
      b0e86d55
  2. 24 5月, 2023 1 次提交
  3. 21 4月, 2023 1 次提交
    • Z
      [Zero-Dim] Support output 0D for static.data (#52775) · c09fc385
      zqw_1997 提交于
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      
      * test=allcase
      c09fc385
  4. 03 4月, 2023 1 次提交
  5. 27 3月, 2023 1 次提交
  6. 25 3月, 2023 1 次提交
  7. 21 3月, 2023 1 次提交
    • G
      【fluid clean】remove fluid.data (#50699) · 72c711bb
      GGBond8488 提交于
      * remove fluid.data
      
      * fix typro
      
      * fix somme unitest error
      
      * fix conflicts
      
      * fix sample code error
      
      * fxi sample coder error
      
      * fxi sample code error
      
      * fxi sample code error
      
      * fix xpu test error
      
      * fix xpu test error
      
      * Delete ps_pb2.py
      
      * fix test error
      
      * fix typro
      
      * fix sample code error
      
      * fix comments
      
      * fix test norm op data
      
      * fix sample code error
      
      * fix conflicts
      72c711bb
  8. 27 2月, 2023 1 次提交
  9. 24 2月, 2023 1 次提交
    • dynamic graph tests (#50572) · 09694f82
      姜永久 提交于
      * fix
      
      * and others
      
      * more ops
      
      * reset distribute_fpn and precision_recall
      
      * reset fc
      
      * modify arange test
      
      * modify reshape&reduce
      
      * add fill_any and sigmoid_cross_entropy
      
      * reset linear_interp_v2
      
      * reset reduce
      
      * modify
      
      * modify arange
      
      * modify cast
      09694f82
  10. 01 2月, 2023 1 次提交
  11. 21 12月, 2022 1 次提交
  12. 08 12月, 2022 1 次提交
  13. 29 11月, 2022 1 次提交
  14. 23 10月, 2022 1 次提交
  15. 10 10月, 2022 1 次提交
  16. 27 9月, 2022 1 次提交
  17. 10 8月, 2022 1 次提交
    • N
      [CodeStyle] use np.testing.assert_array_equal instead of... · 93c5c887
      Nyakku Shigure 提交于
      [CodeStyle] use np.testing.assert_array_equal instead of self.assertTrue(np.array_equal(...)) (#44947)
      
      * automatically fix
      
      * update comments
      
      * numpy -> np
      
      * self.assertEqual(..., True)
      
      * wrong usage (err_msg=True)
      
      这不是修复导致的错误,这些是原来 `self.assertTrue(..., True)`
      的错误用法,因此在修复后将其认为位置参数 `err_msg`
      
      * some missing fix
      93c5c887
  18. 05 6月, 2022 1 次提交
    • S
      【code format check upgrade】 step2:yapf (#42944) · a072fca8
      Sing_chan 提交于
      * use yapf to format all python file
      
      * yapf exclude two unittests file for they rely on writing and reading file, and format will break them
      
      * disable diff_py_file because too many diff files cause command following failed
      a072fca8
  19. 07 4月, 2022 1 次提交
  20. 11 2月, 2022 1 次提交
  21. 29 4月, 2020 1 次提交
  22. 04 4月, 2020 1 次提交
    • myq406450149's avatar
      add unbind op (#23359) · eb035f24
      myq406450149 提交于
      * add unbind op
      unbind(tensor, dim=0):
      说明:移除指定维后,返回一组数组,包含了沿着指定维切片后的各个切片。
      
      tensor(Tensor) -- 输入Tensor
      dim(int) -- 删除的维度
      
      示例:
       Input = [[1,2],
                 [3,4],
                 [5,6]]
        axis = 0
        Output[0] = [1,2]
        Output[1] = [3,4]
        Output[2] = [5,6]
      eb035f24