We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tensorview,也可以理解为tensorslice
假如存在 tensor A[10,20,30]
我们选取A的纬度切片 s=[0:5,10:15,15:30]
tensorview A1=A.slice(s) A1共享A的data,但A1的data并不是连续的,即使A的data是连续的。
需要要增加tensorview的算子支持,需要讨论影响范围
The text was updated successfully, but these errors were encountered:
No branches or pull requests
tensorview,也可以理解为tensorslice
假如存在
tensor A[10,20,30]
我们选取A的纬度切片
s=[0:5,10:15,15:30]
tensorview A1=A.slice(s)
A1共享A的data,但A1的data并不是连续的,即使A的data是连续的。
需要要增加tensorview的算子支持,需要讨论影响范围
The text was updated successfully, but these errors were encountered: