【发布时间】:2019-10-01 17:20:20
【问题描述】:
我一直在尝试在谷歌上搜索,但找不到任何有用的东西。
typedef int64_t v4si __attribute__ ((vector_size(32)));
//warning: AVX vector return without AVX enabled changes the ABI [-Wpsabi]
// so isn't AVX already automatically enabled?
// What does it mean "without AVX enabled"?
// What does it mean "changes the ABI"?
inline v4si v4si_gt0(v4si x_);
//warning: The ABI for passing parameters with 32-byte alignment has changed in GCC 4.6
//So why there's warning and what does it mean?
// Why only this parameter got warning?
// And all other v4si parameter/arguments got no warning?
void set_quota(v4si quota);
【问题讨论】:
-
没有我的投票,但看起来你倾倒了一段代码,只有一行文字“在谷歌上找不到”。一般来说,这些都不是好问题。您可能想解释一下您正在尝试做什么 - 当您不了解 AVX 是什么时,您为什么要尝试使用它?
-
您应该在文本段落中提出问题,而不是在代码块中作为 cmets。