Enzyme main
Loading...
Searching...
No Matches
AutoDiffOpInterface.cpp
Go to the documentation of this file.
1//===- AutoDiffOpInterface.cpp - Op interface for auto differentiation ----===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the interfaces necessary to implement scalable automatic
10// differentiation across an unbounded number of MLIR IR constructs.
11//
12//===----------------------------------------------------------------------===//
13
14#include "AutoDiffOpInterface.h"
15#include "GradientUtils.h"
16#include "mlir/IR/OpDefinition.h"
17#include "mlir/IR/Operation.h"
18
19#include "MLIR/Interfaces/AutoDiffOpInterface.cpp.inc"