[Mlir-commits] [mlir] [mlir][vector] Add more tests for ConvertVectorToLLVM (7/n) (PR #111895)
Andrzej WarzyĆski
llvmlistbot at llvm.org
Fri Oct 11 05:08:31 PDT 2024
================
@@ -2001,6 +2001,37 @@ func.func @vector_fma(%a: vector<8xf32>, %b: vector<2x4xf32>, %c: vector<1x1x1xf
return %0, %1, %2, %3: vector<8xf32>, vector<2x4xf32>, vector<1x1x1xf32>, vector<f32>
}
+func.func @vector_fma_scalable(%a: vector<[8]xf32>, %b: vector<2x[4]xf32>, %c: vector<1x1x[1]xf32>, %d: vector<f32>) -> (vector<[8]xf32>, vector<2x[4]xf32>, vector<1x1x[1]xf32>) {
+ // CHECK-LABEL: @vector_fma
----------------
banach-space wrote:
Great catch, thanks! That's now fixed.
https://github.com/llvm/llvm-project/pull/111895
More information about the Mlir-commits
mailing list