forked from OSchip/llvm-project
33 lines
1.1 KiB
MLIR
33 lines
1.1 KiB
MLIR
// RUN: mlir-opt %s -convert-vector-to-llvm -convert-std-to-llvm -reconcile-unrealized-casts | \
|
|
// RUN: mlir-cpu-runner -e entry -entry-point-result=void \
|
|
// RUN: -shared-libs=%mlir_integration_test_dir/libmlir_c_runner_utils%shlibext | \
|
|
// RUN: FileCheck %s
|
|
|
|
func @entry() {
|
|
%c0 = constant dense<[0, 1, 2, 3]>: vector<4xindex>
|
|
%c1 = constant dense<[0, 1]>: vector<2xindex>
|
|
%c2 = constant 2 : index
|
|
|
|
%v1 = vector.broadcast %c0 : vector<4xindex> to vector<2x4xindex>
|
|
%v2 = vector.broadcast %c1 : vector<2xindex> to vector<4x2xindex>
|
|
%v3 = vector.transpose %v2, [1, 0] : vector<4x2xindex> to vector<2x4xindex>
|
|
%v4 = vector.broadcast %c2 : index to vector<2x4xindex>
|
|
|
|
%v5 = addi %v1, %v3 : vector<2x4xindex>
|
|
|
|
vector.print %v1 : vector<2x4xindex>
|
|
vector.print %v3 : vector<2x4xindex>
|
|
vector.print %v4 : vector<2x4xindex>
|
|
vector.print %v5 : vector<2x4xindex>
|
|
|
|
//
|
|
// created index vectors:
|
|
//
|
|
// CHECK: ( ( 0, 1, 2, 3 ), ( 0, 1, 2, 3 ) )
|
|
// CHECK: ( ( 0, 0, 0, 0 ), ( 1, 1, 1, 1 ) )
|
|
// CHECK: ( ( 2, 2, 2, 2 ), ( 2, 2, 2, 2 ) )
|
|
// CHECK: ( ( 0, 1, 2, 3 ), ( 1, 2, 3, 4 ) )
|
|
|
|
return
|
|
}
|