diff --git a/mlir/include/mlir/Dialect/Shape/IR/ShapeBase.td b/mlir/include/mlir/Dialect/Shape/IR/ShapeBase.td --- a/mlir/include/mlir/Dialect/Shape/IR/ShapeBase.td +++ b/mlir/include/mlir/Dialect/Shape/IR/ShapeBase.td @@ -1,9 +1,20 @@ +//===- ShapeBase.td ----------------------------------------*- tablegen -*-===// +// +// 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 +// +//===----------------------------------------------------------------------===// +// +// Base definitions for the `shape` dialect. +// +//===----------------------------------------------------------------------===// + #ifndef SHAPE_BASE_TD #define SHAPE_BASE_TD include "mlir/IR/OpBase.td" -// TODO(jpienaar): Move to base. def AnyShaped: ShapedContainerType<[AnyType], IsShapedTypePred, "shaped">; //===----------------------------------------------------------------------===//