gpt4 book ai didi

makefile - 如何解决错误: "Clock skew detected"?

转载 作者:行者123 更新时间:2023-12-03 02:32:39 31 4
gpt4 key购买 nike

我正在将我的 OpenCL 和 Cuda 代码上传到 hgpu.org因为我的笔记本电脑没有显卡。当我上传代码时,出现以下错误:

make: Warning: File `main.cu' has modification time 381 s in the future
make: warning: Clock skew detected. Your build may be incomplete.

我知道时钟偏差是由于我的机器时钟时间和服务器时钟时间的差异造成的,所以我将我的时间与服务器的时间同步。 OpenCL 和 C++ 代码现在运行良好,但 Cuda 代码仍然给我这个错误。

所以我的问题是:

除了时间同步之外,是否还有其他原因导致时钟偏差错误?如果有那么我该如何解决?

CUDA代码:

__global__
void test()
{
}

int main()
{
dim3 gridblock(1,1,1);
dim3 threadblock(1,1,1);

test<<<gridblock,threadblock>>>();
return 0;
}

注意:我也可以提供 make 文件。

最佳答案

只需转到有问题的文件所在的目录,在控制台中输入不带引号的 touch * 即可。

关于makefile - 如何解决错误: "Clock skew detected"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18235654/

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