aboutsummaryrefslogtreecommitdiff
path: root/mlir/test/Integration/Dialect/Vector/CPU/ArmSVE/test-scalable-interleave.mlir
blob: 07989bd71f501b2efe9fab28b5ddc93d5db9f421 (plain)
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
// RUN: mlir-opt %s -test-lower-to-llvm | \
// RUN: %mcr_aarch64_cmd -e entry -entry-point-result=void  \
// RUN:   -shared-libs=%mlir_c_runner_utils,%mlir_arm_runner_utils \
// RUN:   -march=aarch64 -mattr=+sve | \
// RUN: FileCheck %s

func.func @entry() {
  %f1 = arith.constant 1.0 : f32
  %f2 = arith.constant 2.0 : f32
  %v1 = vector.splat %f1 : vector<[4]xf32>
  %v2 = vector.splat %f2 : vector<[4]xf32>
  vector.print %v1 : vector<[4]xf32>
  vector.print %v2 : vector<[4]xf32>
  //
  // Test vectors:
  //
  // CHECK: ( 1, 1, 1, 1
  // CHECK: ( 2, 2, 2, 2

  %v3 = vector.interleave %v1, %v2 : vector<[4]xf32>
  vector.print %v3 : vector<[8]xf32>
  // CHECK: ( 1, 2, 1, 2, 1, 2, 1, 2

  return
}