Home | History | Annotate | Download | only in PTX

Lines Matching full:complex

4 %complex = type { float, float }
6 define ptx_device %complex @complex_add(%complex %a, %complex %b) {
15 %a.real = extractvalue %complex %a, 0
16 %a.imag = extractvalue %complex %a, 1
17 %b.real = extractvalue %complex %b, 0
18 %b.imag = extractvalue %complex %b, 1
21 %ret.0 = insertvalue %complex undef, float %ret.real, 0
22 %ret.1 = insertvalue %complex %ret.0, float %ret.imag, 1
23 ret %complex %ret.1