search for: ptx23

Displaying 8 results from an estimated 8 matches for "ptx23".

Did you mean: ptx22
2011 May 06
2
[LLVMdev] [PATCH ]Add Subtarget ptx23
Hi, Justin PTX version in CUDA 4.0 has changed from 2.2 to 2.3. I add ptx23 subtarget and update a testcase. Is that O.K.? Regards, chenwj -- Wei-Ren Chen (陳韋任) Computer Systems Lab, Institute of Information Science, Academia Sinica, Taiwan (R.O.C.) Tel:886-2-2788-3799 #1667 -------------- next part -------------- Index: test/CodeGen/PTX/options.ll ==================...
2011 May 07
2
[LLVMdev] [PATCH ]Add Subtarget ptx23
Hi, Justin Thansk, but I have a little concern though. I saw Chiou mentioned the compatibility issue of PTX on the mailing list. http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-March/038654.html In my PTX.td patch, def FeaturePTX23 : SubtargetFeature<"ptx23", "PTXVersion", PTX_VERSION_2_3", "Use PTX Language Version 2.3", [FeaturePTX22]>; I can only guess above statement means PTX23 is fully compatible with PTX...
2011 May 06
0
[LLVMdev] [PATCH ]Add Subtarget ptx23
On Fri, May 6, 2011 at 5:37 AM, 陳韋任 <chenwj at iis.sinica.edu.tw> wrote: > Hi, Justin > > PTX version in CUDA 4.0 has changed from 2.2 to 2.3. > I add ptx23 subtarget and update a testcase. > > Is that O.K.? > Looks good. Committed in r130980. Thanks! In the future, patches should be sent to llvm-commits instead of llvmdev. > > Regards, > chenwj > > -- > Wei-Ren Chen (陳韋任) > Computer Systems Lab, Institute of Inform...
2011 May 08
0
[LLVMdev] [PATCH ]Add Subtarget ptx23
...sinica.edu.tw> wrote: > Hi, Justin > > Thansk, but I have a little concern though. I saw Chiou mentioned the > compatibility issue of PTX on the mailing list. > http://lists.cs.uiuc.edu/pipermail/llvmdev/2011-March/038654.html > > In my PTX.td patch, > > def FeaturePTX23 : SubtargetFeature<"ptx23", "PTXVersion", > PTX_VERSION_2_3", > "Use PTX Language Version 2.3", > [FeaturePTX22]>; > > I can only guess above statement means PTX23 is fully...
2011 Nov 14
2
[LLVMdev] PTX backend fatal error
...0] [ID=2] The command I am using is: clang kernels/fatal_error_test.cl -O0 -include ocldef.h -include builtin_functions_ptx.cl -D__x86_64__ -ccc-host-triple ptx32 -Xclang -target-feature -Xclang +ptx23 -Xclang -target-feature -Xclang +compute20 Any ideas ? Best regards Alberto
2011 Nov 14
0
[LLVMdev] PTX backend fatal error
...g is: > > clang kernels/fatal_error_test.cl -O0 -include ocldef.h -include > builtin_functions_ptx.cl > -D__x86_64__ > -ccc-host-triple ptx32 -Xclang > -target-feature > -Xclang +ptx23 -Xclang > -target-feature > -Xclang +compute20 > > Any ideas ? > Unfortunately, this sample will not work at this time. First, the backend does not support i8 types yet. Second, at higher optimization levels, LLVM turns this loop i...
2011 Nov 14
1
[LLVMdev] PTX backend fatal error
...l<http://fatal_error_test.cl> -O0 -include ocldef.h -include builtin_functions_ptx.cl<http://builtin_functions_ptx.cl> -D__x86_64__ -ccc-host-triple ptx32 -Xclang -target-feature -Xclang +ptx23 -Xclang -target-feature -Xclang +compute20 Any ideas ? Unfortunately, this sample will not work at this time. First, the backend does not support i8 types yet. Second, at higher optimization levels, LLVM turns this loop into a memset intrinsic,...
2011 Oct 24
1
[LLVMdev] Function pointer parameters in PTX backend
Hi everybody, I am trying to produce ptx code starting from OpenCL C. I am experiencing a problem concerning pointer parameters. Here follows an example: kernel void function(__global float* parameter1) {} NVIDIA NVCC Compiler: .entry function( .param .u32 *.ptr* .global .align 4 function_param_0 ) { ret; } CLANG + LLVM PTX backend // (skipping builtin functions definitions) .entry