Displaying 2 results from an estimated 2 matches for "pthread_test".
2017 Nov 14
1
OrcJIT + CUDA Prototype for Cling
...a kernel, the content of the file will ignore
>
> Note: As a prototype, the input is just static and barely checked yet.
>
> 1. hello.cu <http://hello.cu>: simple c++ hello world program with
> cmath library call sqrt() -> works without problems
>
> 2. pthread_test.cu <http://pthread_test.cu>: c++ program, which
> starts a second thread -> works without problems
>
> 3. fat_memory.cu <http://fat_memory.cu>: use cuda library and
> allocate about 191 MB of VRAM. After the allocation, the program
> waits for 3 seconds...
2017 Sep 27
2
OrcJIT + CUDA Prototype for Cling
...n
- a fatbin file is necessary, but if the program doesn't need a
kernel, the content of the file will ignore
Note: As a prototype, the input is just static and barely checked yet.
1. hello.cu: simple c++ hello world program with cmath library call
sqrt() -> works without problems
2. pthread_test.cu: c++ program, which starts a second thread -> works
without problems
3. fat_memory.cu: use cuda library and allocate about 191 MB of VRAM.
After the allocation, the program waits for 3 seconds, so you can check
the memory usage with the nvidia-smi -> works without problems
4. runtime.cu:...