1. 21 1月, 2021 1 次提交
  2. 20 1月, 2021 1 次提交
  3. 19 1月, 2021 4 次提交
  4. 18 1月, 2021 4 次提交
  5. 15 1月, 2021 4 次提交
  6. 14 1月, 2021 4 次提交
  7. 13 1月, 2021 3 次提交
  8. 12 1月, 2021 7 次提交
  9. 11 1月, 2021 11 次提交
  10. 08 1月, 2021 1 次提交
    • L
      [cherry-pick 2.0] Fix bug: In dynamic mode, if start or end is negetive,... · 5fe3da39
      liym27 提交于
      [cherry-pick 2.0] Fix bug: In dynamic mode, if start or end is negetive, __getitem__  return wrong result(#30003) (#30146)
      
      1. when slice_item is a slice:
       1) the start of __getitem__ should be std::max(start, 0) if slice
       2) the start of __getitem__ should be std::min(end, dim)
      2. when slice_item is an integer, it should be in [-dim_len, dim_len)
      3. Fix error message to use accurate data
      5fe3da39