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
|
;=========================== begin_copyright_notice ============================
;
; Copyright (C) 2023 Intel Corporation
;
; SPDX-License-Identifier: MIT
;
;============================ end_copyright_notice =============================
; COM: ;;;;;;;;;; RUNNERS ;;;;;;;;;;
; RUN: llc %s -march=genx64 -mcpu=XeHPG -vc-skip-ocl-runtime-info -finalizer-opts='-dumpcommonisa -isaasmToConsole' -o /dev/null \
; RUN: | FileCheck %s
; COM: ;;;;;;;;;; CHECKERS ;;;;;;;;;;
; CHECK: .decl [[SRC:V[^ ]+]] v_type=G type=f num_elts=8
; CHECK: cos (M1, 8) [[COS:V[^ ]+]](0,0)<1> [[SRC]](0,0)<1;1,0>
; CHECK: exp (M1, 8) [[EXP:V[^ ]+]](0,0)<1> [[SRC]](0,0)<1;1,0>
; CHECK: log (M1, 8) [[LOG:V[^ ]+]](0,0)<1> [[SRC]](0,0)<1;1,0>
; CHECK: sin (M1, 8) [[SIN:V[^ ]+]](0,0)<1> [[SRC]](0,0)<1;1,0>
; COM: ;;;;;;;;;; KERNEL ;;;;;;;;;;
target datalayout = "e-p:64:64-i64:64-n8:16:32"
target triple = "genx64-unknown-unknown"
declare <8 x float> @llvm.genx.oword.ld.v8f32(i32, i32, i32)
declare void @llvm.genx.oword.st.v8f32(i32, i32, <8 x float>)
declare <8 x float> @llvm.cos.v8f32(<8 x float>)
declare <8 x float> @llvm.exp2.v8f32(<8 x float>)
declare <8 x float> @llvm.log2.v8f32(<8 x float>)
declare <8 x float> @llvm.sin.v8f32(<8 x float>)
declare <8 x float> @llvm.pow.v8f32(<8 x float>, <8 x float>)
define dllexport spir_kernel void @math(i32 %0, i32 %1) local_unnamed_addr #0 {
%src = tail call <8 x float> @llvm.genx.oword.ld.v8f32(i32 0, i32 %0, i32 0)
%cos = call afn <8 x float> @llvm.cos.v8f32(<8 x float> %src)
%exp = call afn <8 x float> @llvm.exp2.v8f32(<8 x float> %src)
%log = call afn <8 x float> @llvm.log2.v8f32(<8 x float> %src)
%sin = call afn <8 x float> @llvm.sin.v8f32(<8 x float> %src)
tail call void @llvm.genx.oword.st.v8f32(i32 %1, i32 0, <8 x float> %cos)
tail call void @llvm.genx.oword.st.v8f32(i32 %1, i32 2, <8 x float> %exp)
tail call void @llvm.genx.oword.st.v8f32(i32 %1, i32 4, <8 x float> %log)
tail call void @llvm.genx.oword.st.v8f32(i32 %1, i32 6, <8 x float> %sin)
ret void
}
attributes #0 = { noinline nounwind "CMGenxMain" }
!spirv.Source = !{!1}
!opencl.spir.version = !{!2}
!opencl.ocl.version = !{!1}
!opencl.used.extensions = !{!0}
!opencl.used.optional.core.features = !{!0}
!spirv.Generator = !{!3}
!genx.kernels = !{!4}
!genx.kernel.internal = !{!8}
!0 = !{}
!1 = !{i32 0, i32 0}
!2 = !{i32 1, i32 2}
!3 = !{i16 6, i16 14}
!4 = !{void (i32, i32)* @math, !"math", !5, i32 0, !6, !1, !7, i32 0}
!5 = !{i32 2, i32 2}
!6 = !{i32 64, i32 68}
!7 = !{!"buffer_t", !"buffer_t"}
!8 = !{void (i32, i32)* @math, null, null, null, null}
|