Created by: songyouwei
- 优化了动态图
Variable.__getitem__
的性能- 调整至cpp端实现,耗时减少约40%
- 支持step为-1以及其他负数,
start/end
可以不为None
- 优化了
strided_slice
op,支持step
为负数且end
省略时的特殊情况,可避免额外的reverse- 如
::-1
,start
会解析为length-1
,end
会解析为-1
(see cpython impl)
- 如
Created by: songyouwei
Variable.__getitem__
的性能
start/end
可以不为None
strided_slice
op,支持step
为负数且end
省略时的特殊情况,可避免额外的reverse
::-1
,start
会解析为length-1
,end
会解析为-1
(see cpython impl)