llvm/mlir/unittests/IR/ShapedTypeTest.cpp

//===- ShapedTypeTest.cpp - ShapedType unit tests -------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

#include "mlir/IR/AffineMap.h"
#include "mlir/IR/BuiltinAttributes.h"
#include "mlir/IR/BuiltinTypes.h"
#include "mlir/IR/Dialect.h"
#include "mlir/IR/DialectInterface.h"
#include "mlir/Support/LLVM.h"
#include "llvm/ADT/SmallVector.h"
#include "gtest/gtest.h"
#include <cstdint>

usingnamespacemlir;
usingnamespacemlir::detail;

namespace {
TEST(ShapedTypeTest, CloneMemref) {}

TEST(ShapedTypeTest, CloneTensor) {}

TEST(ShapedTypeTest, CloneVector) {}

TEST(ShapedTypeTest, VectorTypeBuilder) {}

TEST(ShapedTypeTest, RankedTensorTypeBuilder) {}

/// Simple wrapper class to enable "isa querying" and simple accessing of
/// encoding.
class TensorWithString : public RankedTensorType {};

TEST(ShapedTypeTest, RankedTensorTypeView) {}

} // namespace