43 lines
1.5 KiB
LLVM
43 lines
1.5 KiB
LLVM
; This test verifies that the Vector16 capability is correctly added
|
|
; if an OpenCL kernel uses a vector of eight elements.
|
|
;
|
|
;Source:
|
|
;__kernel void test( int8 v ) {}
|
|
|
|
; RUN: llvm-as %s -o %t.bc
|
|
; RUN: llvm-spirv %t.bc -o - -spirv-text | FileCheck %s --check-prefix=CHECK-SPIRV
|
|
; RUN: llvm-spirv %t.bc -o %t.spv
|
|
; RUN: spirv-val %t.spv
|
|
; RUN: llvm-spirv -r %t.spv -o %t.rev.bc
|
|
; RUN: llvm-dis < %t.rev.bc | FileCheck %s --check-prefix=CHECK-LLVM
|
|
|
|
; CHECK-SPIRV: Capability Vector16
|
|
|
|
target datalayout = "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-n8:16:32:64"
|
|
target triple = "spir"
|
|
|
|
; Function Attrs: nounwind
|
|
define spir_kernel void @test(<8 x i32> %v) #0 !kernel_arg_addr_space !1 !kernel_arg_access_qual !2 !kernel_arg_type !3 !kernel_arg_base_type !4 !kernel_arg_type_qual !5 {
|
|
; CHECK-LLVM: <8 x i32>
|
|
%1 = alloca <8 x i32>, align 32
|
|
store <8 x i32> %v, ptr %1, align 32
|
|
ret void
|
|
}
|
|
|
|
attributes #0 = { nounwind "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
|
|
|
|
!opencl.enable.FP_CONTRACT = !{}
|
|
!opencl.spir.version = !{!6}
|
|
!opencl.ocl.version = !{!6}
|
|
!opencl.used.extensions = !{!7}
|
|
!opencl.used.optional.core.features = !{!7}
|
|
!opencl.compiler.options = !{!7}
|
|
|
|
!1 = !{i32 0}
|
|
!2 = !{!"none"}
|
|
!3 = !{!"int8"}
|
|
!4 = !{!"int8"}
|
|
!5 = !{!""}
|
|
!6 = !{i32 1, i32 2}
|
|
!7 = !{}
|