1. 10 1月, 2022 1 次提交
  2. 30 12月, 2021 1 次提交
    • Z
      【cherry-pick】Fix bug of tensor slice (#37400, #38098) (#38593) · 1046636b
      zyfncg 提交于
      本PR修复了以下两个tensor切片索引bug:
      
      1.修复Tensor索引赋值调用set_value op出现的显存泄露问题,该问题主要是由Inplace策略的使用不当导致,本PR中已完成修复。
      
      2.修复使用多个None类型索引时结果维度异常的问题
      1046636b
  3. 08 11月, 2021 1 次提交
  4. 01 9月, 2021 1 次提交
    • Z
      Support settiem by Bool index (#35133) · d387820d
      zyfncg 提交于
      * Support getitem by Bool index
      
      * delete some debug info of bool index
      
      * support the case that the shape of bool index is different from indexed tensor
      
      * support setitem by bool index
      
      * add the unittest for throwing exception
      
      * merge conflict
      
      * add check for int tensor when index is bool
      d387820d
  5. 11 8月, 2021 1 次提交
  6. 30 7月, 2021 1 次提交
  7. 25 4月, 2021 1 次提交
  8. 30 3月, 2021 2 次提交
  9. 29 3月, 2021 1 次提交
  10. 20 2月, 2021 1 次提交
  11. 08 2月, 2021 1 次提交
  12. 11 1月, 2021 1 次提交
  13. 23 12月, 2020 1 次提交
    • L
      [setitem] Support Tensor setitem in static mode (#29708) · 97e75ad0
      liym27 提交于
      1. Type of index: int, slice(step must be 1).
      
      2. Type of value: 
       (1) int32, int64, float32, bool; 
       (2) numpy.array(int32, int64, float32, bool);<Note: float64 is not supported>
       (3) paddle.Tensor(int32, int64, float32, float64, bool);
      97e75ad0