Enzyme main
Loading...
Searching...
No Matches
AutoDiffTypeInterface.cpp
Go to the documentation of this file.
1//===- AutoDiffTypeInterface.cpp - Type interface for auto diff -----------===//
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 type interfaces necessary to implement scalable
10// automatic differentiation across an unbounded number of MLIR IR constructs.
11//
12//===----------------------------------------------------------------------===//
13
15#include "mlir/IR/Builders.h"
16#include "mlir/IR/Value.h"
17
18using namespace mlir;
19
20#include "MLIR/Interfaces/AutoDiffTypeInterface.cpp.inc"