The current StandardToLLVM conversion patterns only really handle the Func dialect. The pass itself adds patterns for Arithmetic/CFToLLVM, but those should be/will be split out in a followup. This commit focuses solely on being an NFC rename. Aside from the directory change, the pattern and pass creation API have been renamed: * populateStdToLLVMFuncOpConversionPattern -> populateFuncToLLVMFuncOpConversionPattern * populateStdToLLVMConversionPatterns -> populateFuncToLLVMConversionPatterns * createLowerToLLVMPass -> createConvertFuncToLLVMPass Differential Revision: https://reviews.llvm.org/D120778
45 lines
1.3 KiB
MLIR
45 lines
1.3 KiB
MLIR
// RUN: mlir-opt %s -convert-scf-to-cf -convert-vector-to-llvm -convert-func-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() {
|
|
%v = arith.constant dense<[-8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]> : vector<24xi4>
|
|
vector.print %v : vector<24xi4>
|
|
//
|
|
// Test vector:
|
|
//
|
|
// CHECK: ( -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, -8, -7, -6, -5, -4, -3, -2, -1 )
|
|
|
|
|
|
%0 = vector.reduction <add>, %v : vector<24xi4> into i4
|
|
vector.print %0 : i4
|
|
// CHECK: 4
|
|
|
|
%1 = vector.reduction <mul>, %v : vector<24xi4> into i4
|
|
vector.print %1 : i4
|
|
// CHECK: 0
|
|
|
|
%2 = vector.reduction <minsi>, %v : vector<24xi4> into i4
|
|
vector.print %2 : i4
|
|
// CHECK: -8
|
|
|
|
%3 = vector.reduction <maxsi>, %v : vector<24xi4> into i4
|
|
vector.print %3 : i4
|
|
// CHECK: 7
|
|
|
|
%4 = vector.reduction <and>, %v : vector<24xi4> into i4
|
|
vector.print %4 : i4
|
|
// CHECK: 0
|
|
|
|
%5 = vector.reduction <or>, %v : vector<24xi4> into i4
|
|
vector.print %5 : i4
|
|
// CHECK: -1
|
|
|
|
%6 = vector.reduction <xor>, %v : vector<24xi4> into i4
|
|
vector.print %6 : i4
|
|
// CHECK: 0
|
|
|
|
return
|
|
}
|