xref: /llvm-project/mlir/lib/IR/TensorEncoding.cpp (revision 23c9e8bc25795b69e16d39b674c19c79a2bb107b)
1*23c9e8bcSAart Bik //===- TensorEncoding.cpp - MLIR Tensor Encoding --------------------------===//
2*23c9e8bcSAart Bik //
3*23c9e8bcSAart Bik // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*23c9e8bcSAart Bik // See https://llvm.org/LICENSE.txt for license information.
5*23c9e8bcSAart Bik // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*23c9e8bcSAart Bik //
7*23c9e8bcSAart Bik //===----------------------------------------------------------------------===//
8*23c9e8bcSAart Bik 
9*23c9e8bcSAart Bik #include "mlir/IR/TensorEncoding.h"
10*23c9e8bcSAart Bik 
11*23c9e8bcSAart Bik using namespace mlir;
12*23c9e8bcSAart Bik 
13*23c9e8bcSAart Bik //===----------------------------------------------------------------------===//
14*23c9e8bcSAart Bik // Tensor Encoding Interfaces Methods
15*23c9e8bcSAart Bik //===----------------------------------------------------------------------===//
16*23c9e8bcSAart Bik 
17*23c9e8bcSAart Bik #include "mlir/IR/TensorEncInterfaces.cpp.inc"
18