Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Crush application #7

Open
proton2 opened this issue Jan 21, 2024 · 3 comments
Open

Crush application #7

proton2 opened this issue Jan 21, 2024 · 3 comments

Comments

@proton2
Copy link

proton2 commented Jan 21, 2024

Error log
simlod-error-log.txt

@proton2
Copy link
Author

proton2 commented Jan 21, 2024

Version of cuda:
version.json

@m-schuetz
Copy link
Owner

m-schuetz commented Jan 22, 2024

Yeah that's probably because of the CUDA version, I guess I typedef'd stuff that's now being defined by newer CUDA versions itself.

You could try removing the conflicting typedefs in utils.h.cu:

typedef unsigned int uint32_t;
typedef int int32_t;
typedef char int8_t;
typedef unsigned char uint8_t;
typedef unsigned long long uint64_t;
typedef long long int64_t;

According to the error, int8_t is one of the problems. Maybe there will be another one once you fix that.

@proton2
Copy link
Author

proton2 commented Jan 27, 2024

After this fix I try to run application and I get this error:

(0.761314) cpu.numProcessors: 8 launching 16 loader threads cuMemAlloc(&cptr_buffer, 300 MB); cuMemAlloc(&cptr_nodes, 40 MB); cuMemAlloc(&cptr_renderbuffer, 200 MB); cuMemAlloc(&cptr_stats, 104 ); cuMemAlloc(&cptr_buffer_persistent, 5'841 MB); ============================================== 6'381 MB

================================================================================
building CUDA program
compiling progressive_octree_voxels.cu
CUDA_PATH is set to: F:\apps\Cuda

  • compiled in 0.657s
    compiling utils.cu
    CUDA_PATH is set to: F:\apps\Cuda
  • compiled in 0.086s
    cuda error code: 200
    cuda error code: 200
    cuda error code: 200
    link error message:
    link info message:
    cuda error code: 200

SimLOD.exe (process 10816) exited with code -1073741819.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants