gpt4 book ai didi

c - 警告 : format '%ld' expects argument of type 'long int' , 但参数的类型为 '__builtin_neon_di'

转载 作者:行者123 更新时间:2023-11-30 15:19:54 24 4
gpt4 key购买 nike

我的this question ,我无法交叉检查输出。我在执行后收到一些错误的打印语句。有人可以告诉我 printf() 语句是否错误,或者我正在执行的逻辑是否错误。

代码:

int64_t arr[2]  = {227802,9896688};
int64x2_t check64_2 = vld1q_s64(arr);

for(int i = 0;i < 2; i++){
printf("check64_2[%d]: %ld\n",i,check64_2[i]);
}

int64_t way1 = check64_2[0] + check64_2[1];

int64x1_t way2 = vset_lane_s64(vgetq_lane_s64(check64_2, 0) + vgetq_lane_s64(check64_2, 1), way2, 0);

int64x1_t way3 = vadd_s64(vget_high_s64 (check64_2),vget_low_s64 (check64_2));

printf("way1 :%ld \n",way1);
printf("way2 :%ld \n",way2);
printf("way3 :%ld \n",way3);

输出:

check64_2[0]: 227802
check64_2[1]: 9896688
way1 :0
way2 :0
way3 :0

警告:

 warning:format '%ld' expects argument of type 'long int', but argument 3 has type '__builtin_neon_di'printf("check64_2[%d]: %ld\n",i,check64_2[i]);
warning:format '%ld' expects argument of type 'long int', but argument 2 has type 'int64_t {aka long long int}' [-Wformat=]
printf("way1 :%ld \n",way1);
^

有人可以告诉我如何使用 log/printf 消息确认逻辑。

最佳答案

您正在使用 NEON 扩展。它们不是普通变量,因为它们存储在 NEON 寄存器中。您需要使用特殊函数从它们中获取数据。例如,要读取单行 int64 值,您需要调用 vget_lane_s64。它将返回正常的 64 位数字,然后您可以将其提供给 printf()

是的,对于 64 位宽变量,您需要 "%lld" 格式。

关于c - 警告 : format '%ld' expects argument of type 'long int' , 但参数的类型为 '__builtin_neon_di',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30328555/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com