mirror of https://github.com/llvm/torch-mlir
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
|
//===------------------------------------------------------------*- C++ -*-===//
|
||
|
//
|
||
|
// This file is licensed 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_JITRUNTIME_JITMODULE_H
|
||
|
#define NPCOMP_JITRUNTIME_JITMODULE_H
|
||
|
|
||
|
#include "mlir/ExecutionEngine/ExecutionEngine.h"
|
||
|
#include "mlir/IR/Module.h"
|
||
|
#include "npcomp/runtime/UserAPI.h"
|
||
|
#include "llvm/ADT/ArrayRef.h"
|
||
|
#include "llvm/ADT/SmallVector.h"
|
||
|
#include "llvm/ADT/StringRef.h"
|
||
|
#include "llvm/Support/Error.h"
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
namespace npcomp {
|
||
|
// Wrapper around npcomprt data structures and a JITted module, facilitating
|
||
|
// interaction.
|
||
|
class JITModule {
|
||
|
public:
|
||
|
// Factory function for creation.
|
||
|
static llvm::Expected<std::unique_ptr<JITModule>>
|
||
|
fromMLIR(mlir::ModuleOp module, llvm::ArrayRef<llvm::StringRef> sharedLibs);
|
||
|
|
||
|
llvm::Expected<llvm::SmallVector<npcomprt::Ref<npcomprt::Tensor>, 6>>
|
||
|
invoke(llvm::StringRef functionName,
|
||
|
llvm::ArrayRef<npcomprt::Ref<npcomprt::Tensor>> inputs);
|
||
|
|
||
|
private:
|
||
|
JITModule();
|
||
|
std::unique_ptr<mlir::ExecutionEngine> engine;
|
||
|
npcomprt::ModuleDescriptor *descriptor;
|
||
|
};
|
||
|
} // namespace npcomp
|
||
|
|
||
|
#endif // NPCOMP_JITRUNTIME_JITMODULE_H
|