To keep the test filenames consistent, this patch:
* removes "test-" from file names (there used to be a mix of
"test-feature-1.mlir" and "feature-2.mlir"),
* replaces "_" with "-" (there used to be a mix of "feature-3.mlir"
and "feature_4.mlir").
Only files under test/Integration/Dialect/Vector/CPU are updated.
25 lines
738 B
MLIR
25 lines
738 B
MLIR
// RUN: mlir-opt %s -test-lower-to-llvm | \
|
|
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
|
|
// RUN: -shared-libs=%mlir_c_runner_utils | \
|
|
// RUN: FileCheck %s
|
|
|
|
func.func @entry() {
|
|
%f1 = arith.constant 1.0 : f32
|
|
%f2 = arith.constant 2.0 : f32
|
|
%v1 = vector.splat %f1 : vector<2x4xf32>
|
|
%v2 = vector.splat %f2 : vector<2x4xf32>
|
|
vector.print %v1 : vector<2x4xf32>
|
|
vector.print %v2 : vector<2x4xf32>
|
|
//
|
|
// Test vectors:
|
|
//
|
|
// CHECK: ( ( 1, 1, 1, 1 ), ( 1, 1, 1, 1 ) )
|
|
// CHECK: ( ( 2, 2, 2, 2 ), ( 2, 2, 2, 2 ) )
|
|
|
|
%v3 = vector.interleave %v1, %v2 : vector<2x4xf32> -> vector<2x8xf32>
|
|
vector.print %v3 : vector<2x8xf32>
|
|
// CHECK: ( ( 1, 2, 1, 2, 1, 2, 1, 2 ), ( 1, 2, 1, 2, 1, 2, 1, 2 ) )
|
|
|
|
return
|
|
}
|