Displaying 2 results from an estimated 2 matches for "nbody_kernel".
2013 Mar 18
2
[LLVMdev] UNREACHABLE executed! error while trying to generate PTX
I am trying to generate PTX code for 'nbody' sample program's kernel
(nbody_kernel.cu) using clang/LLVM version 3.2. The nbody CUDA program is
available in Nvidia's SDK.
I am referring to https://github.com/jholewinski/llvm-ptx-samples project.
Following are my commands,
clang++ -O4 -S -I/usr/local/cuda/include -emit-llvm -target nvptx64
nbody_kernel.cu -o nbody_kernel....
2013 Mar 18
0
[LLVMdev] UNREACHABLE executed! error while trying to generate PTX
...om the CUDA toolkit?
Since the error is in the back-end, can you just post the .ll or .bc file
you are trying to compile?
On Mon, Mar 18, 2013 at 12:42 AM, upit <uday_pitambare at yahoo.com> wrote:
> I am trying to generate PTX code for 'nbody' sample program's kernel
> (nbody_kernel.cu) using clang/LLVM version 3.2. The nbody CUDA program is
> available in Nvidia's SDK.
>
> I am referring to https://github.com/jholewinski/llvm-ptx-samples project.
>
> Following are my commands,
>
> clang++ -O4 -S -I/usr/local/cuda/include -emit-llvm -target nvptx64
>...