[Mlir-commits] [mlir] [mlir][LLVM][NFC] Fix description of `LLVMFixedVectorType` (PR #126031)

Matthias Springer llvmlistbot at llvm.org
Thu Feb 6 01:25:00 PST 2025


https://github.com/matthias-springer created https://github.com/llvm/llvm-project/pull/126031

None

>From be280dad7de1f10b80788ede46fe300bd61a1c53 Mon Sep 17 00:00:00 2001
From: Matthias Springer <mspringer at nvidia.com>
Date: Thu, 6 Feb 2025 10:23:58 +0100
Subject: [PATCH] [mlir][LLVM][NFC] Fix description of `LLVMFixedVectorType`

---
 mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td b/mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td
index 77c8035ce3d71a3..0b9e4b9c5573839 100644
--- a/mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td
+++ b/mlir/include/mlir/Dialect/LLVMIR/LLVMTypes.td
@@ -291,9 +291,9 @@ def LLVMPointerType : LLVMType<"LLVMPointer", "ptr", [
 def LLVMFixedVectorType : LLVMType<"LLVMFixedVector", "vec"> {
   let summary = "LLVM fixed vector type";
   let description = [{
-    LLVM dialect scalable vector type, represents a sequence of elements of
-    unknown length that is known to be divisible by some constant. These
-    elements can be processed as one in SIMD context.
+    LLVM dialect vector type that supports all element types that are supported
+    in LLVM vectors but that are not supported by the builtin MLIR vector type.
+    E.g., LLVMFixedVectorType supports LLVM pointers as element type.
   }];
 
   let typeName = "llvm.fixed_vec";



More information about the Mlir-commits mailing list