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
const int t = (a >> 2) & 0x3; int ret = vgetq_lane_s32(vec, t);
报错:lane index must be a constant immediate. 必须要 t 是常数输入才行。。。 但是我要获取的通道输入 取决于参数a。。。这怎么解决?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
const int t = (a >> 2) & 0x3;
int ret = vgetq_lane_s32(vec, t);
报错:lane index must be a constant immediate.
必须要 t 是常数输入才行。。。
但是我要获取的通道输入 取决于参数a。。。这怎么解决?
The text was updated successfully, but these errors were encountered: