xref: /llvm-project/mlir/lib/Interfaces/CopyOpInterface.cpp (revision 0f03b2bfda977a913036180584f636ecb4c8ef2a)
1*0f03b2bfSEhsan Toosi //===- CopyOpInterface.cpp - Copy operations interface in MLIR ------------===//
2*0f03b2bfSEhsan Toosi //
3*0f03b2bfSEhsan Toosi // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*0f03b2bfSEhsan Toosi // See https://llvm.org/LICENSE.txt for license information.
5*0f03b2bfSEhsan Toosi // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*0f03b2bfSEhsan Toosi //
7*0f03b2bfSEhsan Toosi //===----------------------------------------------------------------------===//
8*0f03b2bfSEhsan Toosi 
9*0f03b2bfSEhsan Toosi #include "mlir/Interfaces/CopyOpInterface.h"
10*0f03b2bfSEhsan Toosi 
11*0f03b2bfSEhsan Toosi using namespace mlir;
12*0f03b2bfSEhsan Toosi 
13*0f03b2bfSEhsan Toosi //===----------------------------------------------------------------------===//
14*0f03b2bfSEhsan Toosi // CopyOp Interface
15*0f03b2bfSEhsan Toosi //===----------------------------------------------------------------------===//
16*0f03b2bfSEhsan Toosi 
17*0f03b2bfSEhsan Toosi /// Include the definitions of the copy operation interface.
18*0f03b2bfSEhsan Toosi #include "mlir/Interfaces/CopyOpInterface.cpp.inc"
19