File: ContractionON.ll

package info (click to toggle)
spirv-llvm-translator-15 15.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,028 kB
  • sloc: cpp: 43,715; lisp: 3,497; sh: 153; python: 43; makefile: 26
file content (116 lines) | stat: -rw-r--r-- 4,075 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
; RUN: llvm-as %s -o %t.bc
; RUN: llvm-spirv %t.bc -o %t.spv --spirv-fp-contract=on
; RUN: llvm-spirv %t.spv -to-text -o - | FileCheck %s
; RUN: spirv-val %t.spv

; CHECK: EntryPoint 6 [[K1:[0-9]+]] "kernel_off_1"
; CHECK: EntryPoint 6 [[K2:[0-9]+]] "kernel_off_2"
; CHECK: EntryPoint 6 [[K3:[0-9]+]] "kernel_off_3"
; CHECK: EntryPoint 6 [[K4:[0-9]+]] "kernel_off_4"
; CHECK: EntryPoint 6 [[K5:[0-9]+]] "kernel_off_5"
; CHECK: EntryPoint 6 [[K6:[0-9]+]] "kernel_off_6"
; CHECK: EntryPoint 6 [[K7:[0-9]+]] "kernel_on_7"

; CHECK: ExecutionMode [[K1]] 31
; CHECK: ExecutionMode [[K2]] 31
; CHECK: ExecutionMode [[K3]] 31
; CHECK: ExecutionMode [[K4]] 31
; CHECK: ExecutionMode [[K5]] 31
; CHECK: ExecutionMode [[K6]] 31
; CHECK-NOT: ExecutionMode [[K7]] 31

target datalayout = "e-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024"
target triple = "spir64"

define float @func_nested_off(float %a, float %b, float %c) {
entry:
  %0 = call float @func_off(float %a, float %b, float %c)
  ret float %0
}

define float @func_off(float %a, float %b, float %c) {
entry:
  %0 = call float @llvm.fmuladd.f32(float %a, float %b, float %c)
  %mul = fmul float %0, %b
  %add = fadd float %mul, %c
  ret float %add
}

declare float @llvm.fmuladd.f32(float, float, float) #0

define float @func_on(float %a, float %b, float %c) {
entry:
  %0 = call float @llvm.fmuladd.f32(float %a, float %b, float %c)
  ret float %0
}

define float @func_mul(float %a, float %b) {
entry:
  %0 = fmul float %a, %b
  ret float %0
}

declare float @func_extern(float, float, float)

define spir_kernel void @kernel_off_1(float %a, float %b, float %c) !kernel_arg_addr_space !3 !kernel_arg_access_qual !4 !kernel_arg_type !5 !kernel_arg_base_type !5 !kernel_arg_type_qual !6 {
entry:
  %mul = fmul float %a, %b
  %add = fadd float %mul, %c
  ret void
}

define spir_kernel void @kernel_off_2(float %a, float %b, float %c) !kernel_arg_addr_space !3 !kernel_arg_access_qual !4 !kernel_arg_type !5 !kernel_arg_base_type !5 !kernel_arg_type_qual !6 {
entry:
  %0 = call float @llvm.fmuladd.f32(float %a, float %b, float %c)
  %call = call float @func_off(float %0, float %b, float %c)
  ret void
}

define spir_kernel void @kernel_off_3(float %a, float %b, float %c) !kernel_arg_addr_space !3 !kernel_arg_access_qual !4 !kernel_arg_type !5 !kernel_arg_base_type !5 !kernel_arg_type_qual !6 {
entry:
  %call = call float @func_nested_off(float %a, float %b, float %c)
  ret void
}

define spir_kernel void @kernel_off_4(float %a, float %b, float %c) !kernel_arg_addr_space !3 !kernel_arg_access_qual !4 !kernel_arg_type !5 !kernel_arg_base_type !5 !kernel_arg_type_qual !6 {
entry:
  %0 = call float @llvm.fmuladd.f32(float %a, float %b, float %c)
  %call = call float @func_extern(float %0, float %b, float %c)
  ret void
}

define spir_kernel void @kernel_off_5(float %a, float %b, float %c) !kernel_arg_addr_space !3 !kernel_arg_access_qual !4 !kernel_arg_type !5 !kernel_arg_base_type !5 !kernel_arg_type_qual !6 {
entry:
  %mul = call float @func_off(float %a, float %b, float %c)
  %add = fadd contract float %mul, %c
  ret void
}

define spir_kernel void @kernel_off_6(float %a, float %b, float %c) !kernel_arg_addr_space !3 !kernel_arg_access_qual !4 !kernel_arg_type !5 !kernel_arg_base_type !5 !kernel_arg_type_qual !6 {
entry:
  %mul = call float @func_mul(float %a, float %b)
  %add = fadd float %mul, %c
  ret void
}

define spir_kernel void @kernel_on_7(float %a, float %b, float %c) !kernel_arg_addr_space !3 !kernel_arg_access_qual !4 !kernel_arg_type !5 !kernel_arg_base_type !5 !kernel_arg_type_qual !6 {
entry:
  %mul = call float @func_mul(float %a, float %b)
  %add = fadd contract float %mul, %c
  ret void
}

attributes #0 = { nounwind readnone speculatable willreturn }


!llvm.module.flags = !{!0}
!opencl.ocl.version = !{!1}
!llvm.ident = !{!2}

!0 = !{i32 1, !"wchar_size", i32 4}
!1 = !{i32 1, i32 0}
!2 = !{!"clang version 11.0.0"}
!3 = !{i32 0, i32 0, i32 0}
!4 = !{!"none", !"none", !"none"}
!5 = !{!"float", !"float", !"float"}
!6 = !{!"", !"", !""}