mirror of https://github.com/llvm/torch-mlir
24 lines
718 B
C++
24 lines
718 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 "refjit" module with backend support definitions.
|
|
void defineBackendRefJitModule(py::module &m);
|
|
|
|
} // namespace python
|
|
} // namespace npcomp
|
|
|
|
#endif // NPCOMP_PYTHON_NPCOMP_MODULE_H
|