[Mlir-commits] [mlir] [mlir][VectorOps] Add `vector.interleave` operation (PR #80315)

Cullen Rhodes llvmlistbot at llvm.org
Mon Feb 5 03:20:39 PST 2024


================
@@ -0,0 +1,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: FileCheck %s
+
+func.func @entry() {
+  %f1 = arith.constant 1.0: f32
+  %f2 = arith.constant 2.0: f32
----------------
c-rhodes wrote:

nit: inconsistent formatting, space after `:`
```suggestion
  %f1 = arith.constant 1.0 : f32
  %f2 = arith.constant 2.0 : f32
```

https://github.com/llvm/llvm-project/pull/80315


More information about the Mlir-commits mailing list