提问人:dasman 提问时间:11/8/2023 最后编辑:dasman 更新时间:11/9/2023 访问量:103
C数学库的源代码是什么?
What is the source code for C math library?
问:
我刚刚开始在 macOS 上尝试 C 编程,看起来它使用 NVIDIA 库进行数学运算。它是闭源的吗?
以下代码在我的 M1 Mac 上编译和运行
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(int argc, char **argv){
if(argc == 1){
printf("no args \n");
return -1;
}
double x = atof(argv[1]);
printf("log of %f is %f", x, log(x));
return 0;
}
在IDE中,当我搜索日志如何实现的定义时,它把我带到了这个:
__DEVICE__ float logf(float __a) {
return __FAST_OR_SLOW(__nv_fast_logf, __nv_logf)(__a);
}
答: 暂无答案
评论