torch-mlir/python/NpcompModule.h

24 lines
726 B
C++

//===- NpcompModule.h - Headers for the python module ---------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef NPCOMP_PYTHON_NPCOMP_MODULE_H
#define NPCOMP_PYTHON_NPCOMP_MODULE_H
#include "./NpcompPybindUtils.h"
namespace npcomp {
namespace python {
/// Defines an "refbackend" module with backend support definitions.
void defineBackendrefbackendModule(py::module &m);
} // namespace python
} // namespace npcomp
#endif // NPCOMP_PYTHON_NPCOMP_MODULE_H