[Mlir-commits] [mlir] [mlir][vector] Add convenience types for scalable vectors (PR #87986)
Kiran Chandramohan
llvmlistbot at llvm.org
Fri Nov 29 13:18:56 PST 2024
================
@@ -0,0 +1,47 @@
+//===- VectorTypes.h - MLIR Vector Types ------------------------*- C++ -*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef MLIR_DIALECT_VECTOR_IR_VECTORTYPES_H_
+#define MLIR_DIALECT_VECTOR_IR_VECTORTYPES_H_
----------------
kiranchandramohan wrote:
Should these be like the following? I see that the preprocessor guards in this directory are a bit inconsistent.
```
#ifndef MLIR_IR_VECTORTYPES_H
#define MLIR_IR_VECTORTYPES_H
```
https://github.com/llvm/llvm-project/pull/87986
More information about the Mlir-commits
mailing list