mirror of https://github.com/llvm/torch-mlir
18 lines
695 B
C++
18 lines
695 B
C++
//===- module_builder.h -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// This file is licensed under a pytorch-style license
|
|
// See frontends/pytorch/LICENSE for license information.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// Includes Torch-specific pybind and associated helpers.
|
|
// Depend on this for access to all Torch types (versus depending on pybind11
|
|
// directly).
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef NPCOMP_FRONTENDS_PYTORCH_CSRC_PYBIND_H
|
|
#define NPCOMP_FRONTENDS_PYTORCH_CSRC_PYBIND_H
|
|
|
|
#include <torch/csrc/utils/pybind.h>
|
|
|
|
#endif // NPCOMP_FRONTENDS_PYTORCH_CSRC_PYBIND_H
|