mirror of https://github.com/llvm/torch-mlir
23 lines
752 B
C
23 lines
752 B
C
//===-- torch-mlir-c/Transforms.h - C API for torch passes --------*- C -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This header declares the registration and creation method for
|
|
// transformation passes.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef TORCHMLIR_C_TRANSFORMS_H
|
|
#define TORCHMLIR_C_TRANSFORMS_H
|
|
|
|
#include "mlir-c/Support.h"
|
|
|
|
#include "torch-mlir/Dialect/Torch/Transforms/Transforms.capi.h.inc"
|
|
|
|
#endif // TORCHMLIR_C_TRANSFORMS_H
|