How to solve error: "Clock skew detected"?

zindarod

I am uploading my OpenCL and Cuda code to hgpu.org because I don't have a graphics card on my laptop. When I upload my code I get the following error:

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

I know that clock skew is due to difference in my machines clock time and the server's clock time, so I synchronized my time with the server's. The OpenCL and C++ code is running fine now but the Cuda code is still giving me this error.

So my question is:

Is there any other reason for clock skew error besides the time synchronization? And if there is then how do I solve it?

Cuda Code:

__global__
void test()
{
}

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

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

Note: I can provide the make file too.

zindarod

I am going to answer my own question.

I added the following lines of code to my Makefile and it fixed the "clock skew" problem:

clean:  
    find . -type f | xargs touch
    rm -rf $(OBJS)

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

how to solve ldflags error in yocto

分類Dev

How to solve "Env not found" error in OpenAI Gym?

分類Dev

How to solve OS module path error in Python

分類Dev

How to solve gradle googleplayservices version error in flutter?

分類Dev

How to solve Vue router change error with param?

分類Dev

How to solve this unconstrained type parameter error in Rust

分類Dev

How to solve the image picker crash app error?

分類Dev

How to solve Route not found error in Laravel?

分類Dev

How to solve error "Invalid view" in registration function?

分類Dev

How to solve this error: Public does not name a type?

分類Dev

Proguard: how to solve error code 1?

分類Dev

How to solve SceneKit double not supported error?

分類Dev

How to solve 'this fails on your system' error with Protractor?

分類Dev

How to solve the compile error in Android NDK?

分類Dev

How to solve $HOME/.dmrc file permission error?

分類Dev

How to solve error " error in your SQL syntax" in JPA for custom repository

分類Dev

How to solve 'Error while creating indices for table id' error in siddhi?

分類Dev

How to solve "virtualenv: error: the following arguments are required: dest" error?

分類Dev

how to solve Django POST URL error of APPEND_SLASH

分類Dev

How to solve MediaPlayer Error "Can't play this video"

分類Dev

How do I solve "Reactive<_>' is ambiguous" error in tableView context

分類Dev

How can I solve ORA-00911: invalid character error?

分類Dev

PHP - How to solve error "using $this when not in object context"?

分類Dev

Jest error: Test suite failed to run, how to solve?

分類Dev

What is the source of Python3 Memory error? And how to solve it?

分類Dev

How to solve Error 1148 from MySql workbench and not cmd?

分類Dev

How to solve the error 'list assignment index out of range' in python

分類Dev

how to solve IndexError: list assignment index out of range error?

分類Dev

How to solve: Error using horzcat Dimensions of matrices being concatenated are not consistent

Related 関連記事

  1. 1

    how to solve ldflags error in yocto

  2. 2

    How to solve "Env not found" error in OpenAI Gym?

  3. 3

    How to solve OS module path error in Python

  4. 4

    How to solve gradle googleplayservices version error in flutter?

  5. 5

    How to solve Vue router change error with param?

  6. 6

    How to solve this unconstrained type parameter error in Rust

  7. 7

    How to solve the image picker crash app error?

  8. 8

    How to solve Route not found error in Laravel?

  9. 9

    How to solve error "Invalid view" in registration function?

  10. 10

    How to solve this error: Public does not name a type?

  11. 11

    Proguard: how to solve error code 1?

  12. 12

    How to solve SceneKit double not supported error?

  13. 13

    How to solve 'this fails on your system' error with Protractor?

  14. 14

    How to solve the compile error in Android NDK?

  15. 15

    How to solve $HOME/.dmrc file permission error?

  16. 16

    How to solve error " error in your SQL syntax" in JPA for custom repository

  17. 17

    How to solve 'Error while creating indices for table id' error in siddhi?

  18. 18

    How to solve "virtualenv: error: the following arguments are required: dest" error?

  19. 19

    how to solve Django POST URL error of APPEND_SLASH

  20. 20

    How to solve MediaPlayer Error "Can't play this video"

  21. 21

    How do I solve "Reactive<_>' is ambiguous" error in tableView context

  22. 22

    How can I solve ORA-00911: invalid character error?

  23. 23

    PHP - How to solve error "using $this when not in object context"?

  24. 24

    Jest error: Test suite failed to run, how to solve?

  25. 25

    What is the source of Python3 Memory error? And how to solve it?

  26. 26

    How to solve Error 1148 from MySql workbench and not cmd?

  27. 27

    How to solve the error 'list assignment index out of range' in python

  28. 28

    how to solve IndexError: list assignment index out of range error?

  29. 29

    How to solve: Error using horzcat Dimensions of matrices being concatenated are not consistent

ホットタグ

アーカイブ