llvm/mlir/unittests/Dialect/BroadcastShapeTest.cpp

//===- BroadcastShapeTest.cpp - broadcasting shape 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/Dialect/Traits.h"
#include "llvm/ADT/SmallVector.h"
#include "gmock/gmock.h"

usingnamespacemlir::OpTrait::util;

SmallVector;
ElementsAre;

TEST(BroadcastShapeTest, CompatibleScalarAndScalar) {}

TEST(BroadcastShapeTest, Compatible0DAnd1DTensor) {}

TEST(BroadcastShapeTest, Compatible0DAnd3DTensor) {}

TEST(BroadcastShapeTest, CompatibleTensorAndTensor) {}

TEST(BroadcastShapeTest, InterleavingOnes) {}

TEST(BroadcastShapeTest, InterleavingUnknowns) {}

TEST(BroadcastShapeTest, IncompatibleLowDim) {}

TEST(BroadcastShapeTest, IncompatibleMiddleDim) {}

TEST(BroadcastShapeTest, IncompatibleHighDim) {}