search for: sm_61

Displaying 14 results from an estimated 14 matches for "sm_61".

2019 Jan 23
2
Debug info for CUDA code
...ow). But > it can't compile the example program > on https://llvm.org/docs/CompileCudaWithLLVM.html#invoking-clang > <https://llvm.org/docs/CompileCudaWithLLVM.html#invoking-clang.> -- > the error is: > > [aznb at asp testcuda]$ clang++ axpy.cu -g -o axpy --cuda-gpu-arch=sm_61 > -lcudart_static -ldl -lrt -pthread -v > clang version 9.0.0 (https://git.llvm.org/git/clang.git > 4566ed0d7c076ad061168f7c6cb5fa3a793614a8) > (https://git.llvm.org/git/llvm.git > b7195a6d8d9064c4fac6a7b91826de80df394f69) > Target: x86_64-unknown-linux-gnu > Thread model: posi...
2018 Dec 14
8
Debug info for CUDA code
Are you planning to release this as soon as it's ready or you want to make it into a major release? Is it possible to let me know (maybe by replying to this thread) once the code is ready? I know sometimes it takes a while to get things in the major release. I greatly appreciate your work on this! Thanks, Char 在 2018-12-15 05:19:50,"Alexey Bataev" <a.bataev at outlook.com>
2019 Feb 26
1
Debug info for CUDA code
..., I tried the b7195a6 from the llvm github mirror, which does include your commit D46189 (see below). But it can't compile the example program on https://llvm.org/docs/CompileCudaWithLLVM.html#invoking-clang -- the error is: [aznb at asp testcuda]$ clang++ axpy.cu -g -o axpy --cuda-gpu-arch=sm_61 -lcudart_static -ldl -lrt -pthread -v clang version 9.0.0 (https://git.llvm.org/git/clang.git 4566ed0d7c076ad061168f7c6cb5fa3a793614a8) (https://git.llvm.org/git/llvm.git b7195a6d8d9064c4fac6a7b91826de80df394f69) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /home/aznb/.linuxbr...
2019 Feb 26
2
Debug info for CUDA code
..., I tried the b7195a6 from the llvm github mirror, which does include your commit D46189 (see below). But it can't compile the example program on https://llvm.org/docs/CompileCudaWithLLVM.html#invoking-clang -- the error is: [aznb at asp testcuda]$ clang++ axpy.cu -g -o axpy --cuda-gpu-arch=sm_61 -lcudart_static -ldl -lrt -pthread -v clang version 9.0.0 (https://git.llvm.org/git/clang.git 4566ed0d7c076ad061168f7c6cb5fa3a793614a8) (https://git.llvm.org/git/llvm.git b7195a6d8d9064c4fac6a7b91826de80df394f69) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /home/aznb/.linuxbr...
2019 Feb 27
3
Debug info for CUDA code
..., I tried the b7195a6 from the llvm github mirror, which does include your commit D46189 (see below). But it can't compile the example program on https://llvm.org/docs/CompileCudaWithLLVM.html#invoking-clang -- the error is: [aznb at asp testcuda]$ clang++ axpy.cu -g -o axpy --cuda-gpu-arch=sm_61 -lcudart_static -ldl -lrt -pthread -v clang version 9.0.0 (https://git.llvm.org/git/clang.git 4566ed0d7c076ad061168f7c6cb5fa3a793614a8) (https://git.llvm.org/git/llvm.git b7195a6d8d9064c4fac6a7b91826de80df394f69) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /home/aznb/.linuxbr...
2019 Mar 11
2
Debug info for CUDA code
..., I tried the b7195a6 from the llvm github mirror, which does include your commit D46189 (see below). But it can't compile the example program on https://llvm.org/docs/CompileCudaWithLLVM.html#invoking-clang -- the error is: [aznb at asp testcuda]$ clang++ axpy.cu -g -o axpy --cuda-gpu-arch=sm_61 -lcudart_static -ldl -lrt -pthread -v clang version 9.0.0 (https://git.llvm.org/git/clang.git 4566ed0d7c076ad061168f7c6cb5fa3a793614a8) (https://git.llvm.org/git/llvm.git b7195a6d8d9064c4fac6a7b91826de80df394f69) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /home/aznb/.linuxbr...
2020 Jan 15
2
Debug info for CUDA code
..., I tried the b7195a6 from the llvm github mirror, which does include your commit D46189 (see below). But it can't compile the example program on https://llvm.org/docs/CompileCudaWithLLVM.html#invoking-clang -- the error is: [aznb at asp testcuda]$ clang++ axpy.cu -g -o axpy --cuda-gpu-arch=sm_61 -lcudart_static -ldl -lrt -pthread -v clang version 9.0.0 (https://git.llvm.org/git/clang.git 4566ed0d7c076ad061168f7c6cb5fa3a793614a8) (https://git.llvm.org/git/llvm.git b7195a6d8d9064c4fac6a7b91826de80df394f69) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /home/aznb/.linuxbr...
2020 Mar 23
2
GSoC Interested student
...  #pragma omp teams distribute   for (int i = 0; i < size; ++i) {     a[i] = a[i]*(i*i)/2;   }   return 0; } PD: The command to compile is this: clang -v -save-temps \ -I/path/to/llvm/release/9.x/include -fopenmp \ -fopenmp-targets=nvptx64-nvidia-cuda -Xopenmp-target \ -march=sm_61 memory_transfer.c -o memory_transfer Thanks. Hamilton. On 23/03/20 11:11 a. m., Doerfert, Johannes wrote: > On 3/22/20 12:33 PM, Hamilton Tobon Mosquera wrote: > > Ahhh I understand. So I believe the project you posted is still > opened. Do you any advice on the question I posted be...
2020 Mar 25
2
GSoC Interested student
...;   return 0; > > } > > > > > > PD: The command to compile is this: > >     clang -v -save-temps \ > >     -I/path/to/llvm/release/9.x/include -fopenmp \ > >     -fopenmp-targets=nvptx64-nvidia-cuda -Xopenmp-target \ > >         -march=sm_61 memory_transfer.c -o memory_transfer > > > > Thanks. > > Hamilton. > > > > On 23/03/20 11:11 a. m., Doerfert, Johannes wrote: > >> On 3/22/20 12:33 PM, Hamilton Tobon Mosquera wrote: > >>   > Ahhh I understand. So I believe the projec...
2020 Mar 22
2
GSoC Interested student
...int i = 0; i < size; ++i) { >> a[i] = a[i]*(i*i)/2; >> } >> return 0; >> >> PD: The command to compile is this: clang -v -save-temps >> -I/path/to/llvm/release/9.x/include -fopenmp >> -fopenmp-targets=nvptx64-nvidia-cuda -Xopenmp-target -march=sm_61 >> memory_transfer.c -o memory_transfer >> >> Thank you all. >> >> Hamilton. >> >> >> On 18/03/20 9:21 p. m., Doerfert, Johannes wrote: >>> Hi Hamilton, >>> >>> I personally don't believe the effort to make the IR >&g...
2020 Mar 29
2
GSoC Interested student
...; >>   > PD: The command to compile is this: > >>   >     clang -v -save-temps \ > >>   >     -I/path/to/llvm/release/9.x/include -fopenmp \ > >>   >     -fopenmp-targets=nvptx64-nvidia-cuda -Xopenmp-target \ > >>   >         -march=sm_61 memory_transfer.c -o memory_transfer > >>   > > >>   > Thanks. > >>   > Hamilton. > >>   > > >>   > On 23/03/20 11:11 a. m., Doerfert, Johannes wrote: > >>   >> On 3/22/20 12:33 PM, Hamilton Tobon Mosquera wrote:...
2020 Mar 22
2
GSoC Interested student
...p teams distribute >   for (int i = 0; i < size; ++i) { >     a[i] = a[i]*(i*i)/2; >   } >   return 0; > > PD: The command to compile is this: clang -v -save-temps > -I/path/to/llvm/release/9.x/include -fopenmp > -fopenmp-targets=nvptx64-nvidia-cuda -Xopenmp-target -march=sm_61 > memory_transfer.c -o memory_transfer > > Thank you all. > > Hamilton. > > > On 18/03/20 9:21 p. m., Doerfert, Johannes wrote: >> Hi Hamilton, >> >> I personally don't believe the effort to make the IR >> "parallelism-aware" is worth i...
2020 Apr 07
2
GSoC Interested student
...le is this: > >>   >>   >     clang -v -save-temps \ > >>   >>   >     -I/path/to/llvm/release/9.x/include -fopenmp \ > >>   >>   >     -fopenmp-targets=nvptx64-nvidia-cuda -Xopenmp-target \ > >>   >>   >         -march=sm_61 memory_transfer.c -o memory_transfer > >>   >>   > > >>   >>   > Thanks. > >>   >>   > Hamilton. > >>   >>   > > >>   >>   > On 23/03/20 11:11 a. m., Doerfert, Johannes wrote: > >>   >&...
2020 Mar 19
2
GSoC Interested student
Hi Hamilton, I personally don't believe the effort to make the IR "parallelism-aware" is worth it right now. What I propose is something else, see for example https://youtu.be/zfiHaPaoQPc and the OpenMPOpt pass. There are multiple bigger tasks towards better offloading, one of which is described here https://github.com/llvm/llvm-project/issues/180 It might be interesting to add the