2020-09-26 09:13:16 +08:00
|
|
|
//===- acap_dispatch.h ------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// This file is licensed under a pytorch-style license
|
|
|
|
// See frontends/pytorch/LICENSE for license information.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// "ATen Capture" dispatcher: Defines facility for capturing programs by
|
|
|
|
// registering dispatch keys to intercept op execution.
|
|
|
|
// References:
|
|
|
|
// http://blog.ezyang.com/2020/09/lets-talk-about-the-pytorch-dispatcher/
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-11-13 14:27:05 +08:00
|
|
|
#ifndef NPCOMP_FRONTENDS_PYTORCH_CSRC_BUILDER_ACAP_DISPATCH_H
|
|
|
|
#define NPCOMP_FRONTENDS_PYTORCH_CSRC_BUILDER_ACAP_DISPATCH_H
|
2020-09-29 09:36:00 +08:00
|
|
|
|
2020-09-26 09:13:16 +08:00
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
|
|
|
|
2020-10-02 09:59:58 +08:00
|
|
|
#include "../pybind.h"
|
|
|
|
|
|
|
|
#include "func_builder.h"
|
2020-09-26 09:13:16 +08:00
|
|
|
|
2020-09-29 09:36:00 +08:00
|
|
|
#include "mlir-c/IR.h"
|
|
|
|
|
2020-09-26 09:13:16 +08:00
|
|
|
#include <ATen/core/dispatch/Dispatcher.h>
|
2020-10-06 14:21:21 +08:00
|
|
|
#include <ATen/core/ivalue.h>
|
2020-09-26 09:13:16 +08:00
|
|
|
#include <c10/core/impl/LocalDispatchKeySet.h>
|
|
|
|
|
|
|
|
namespace torch_mlir {
|
|
|
|
|
|
|
|
/// Main entry point for managing device capture.
|
|
|
|
class AcapController : public std::enable_shared_from_this<AcapController> {
|
|
|
|
public:
|
2020-10-06 14:21:21 +08:00
|
|
|
AcapController(TypeMapper &typeMapper,
|
|
|
|
std::unique_ptr<FuncBuilder> funcBuilder)
|
|
|
|
: typeMapper(typeMapper), funcBuilder(std::move(funcBuilder)) {}
|
2020-09-26 09:13:16 +08:00
|
|
|
|
|
|
|
// Enter and exit the context manager.
|
|
|
|
pybind11::object contextEnter();
|
|
|
|
void contextExit(pybind11::object exc_type, pybind11::object exc_val,
|
|
|
|
pybind11::object exc_tb);
|
|
|
|
|
2020-10-06 14:21:21 +08:00
|
|
|
// Terminates capture and returns tensors from the function.
|
|
|
|
void returns(std::vector<at::Tensor> tensors);
|
|
|
|
|
2020-09-26 09:13:16 +08:00
|
|
|
// Returns the current AcapController (if it has been activated on this
|
2020-10-19 12:32:29 +08:00
|
|
|
// thread. Returns nullptr if none (not active on the current thread).
|
|
|
|
static std::shared_ptr<AcapController> getCurrentThreadAcapController();
|
2020-09-26 09:13:16 +08:00
|
|
|
|
|
|
|
// The fallback boxed kernel that we route captured dispatches through.
|
|
|
|
static void fallbackKernel(const c10::OperatorHandle &opHandle,
|
|
|
|
c10::Stack *stack);
|
|
|
|
|
2020-10-19 12:32:29 +08:00
|
|
|
// Kernel implementation for the boxing-incompatible convolution kernel.
|
|
|
|
static at::Tensor
|
|
|
|
convolutionKernel(const at::Tensor &input, const at::Tensor &weight,
|
|
|
|
const c10::optional<at::Tensor> &bias,
|
|
|
|
const at::IntArrayRef stride, const at::IntArrayRef padding,
|
|
|
|
const at::IntArrayRef dilation, const bool transposed,
|
|
|
|
const at::IntArrayRef output_padding, const int64_t groups);
|
|
|
|
|
2020-10-31 13:52:46 +08:00
|
|
|
// Kernel implementation for the boxing-incompatible convolution kernel.
|
|
|
|
static std::tuple<at::Tensor, at::Tensor, at::Tensor> mklConvolutionBackward(
|
|
|
|
const at::Tensor &input, const at::Tensor &grad_output,
|
|
|
|
const at::Tensor &weight, const at::IntArrayRef padding,
|
|
|
|
const at::IntArrayRef stride, const at::IntArrayRef dilation,
|
|
|
|
const int64_t groups, std::array<bool, 3> output_mask);
|
|
|
|
|
|
|
|
// Implementation for the aten::copy_ kernel.
|
|
|
|
static at::Tensor ©UnderKernel(at::Tensor &self, const at::Tensor &src,
|
|
|
|
bool non_blocking);
|
|
|
|
|
2020-11-13 09:42:19 +08:00
|
|
|
// Backend select kernel for arange factory function.
|
|
|
|
static at::Tensor
|
|
|
|
arangeBackendSelectKernel(at::Scalar end, c10::optional<at::ScalarType> dtype,
|
|
|
|
c10::optional<at::Layout> layout,
|
|
|
|
c10::optional<at::Device> device,
|
|
|
|
c10::optional<bool> pin_memory);
|
|
|
|
|
2020-09-26 09:13:16 +08:00
|
|
|
private:
|
2020-10-19 12:32:29 +08:00
|
|
|
/// Builds a kernel call step by step.
|
2020-11-21 09:03:23 +08:00
|
|
|
class TracedKernelCallBuilder : private KernelCallBuilder {
|
2020-10-19 12:32:29 +08:00
|
|
|
public:
|
2020-11-21 09:03:23 +08:00
|
|
|
TracedKernelCallBuilder(
|
2020-10-31 13:52:46 +08:00
|
|
|
AcapController &parent, MlirContext context, MlirLocation loc,
|
|
|
|
const c10::OperatorHandle &opHandle,
|
2020-12-15 00:42:42 +08:00
|
|
|
c10::optional<std::string> overrideKernelName = c10::nullopt);
|
2020-10-19 12:32:29 +08:00
|
|
|
void addOperand(const c10::IValue &value);
|
|
|
|
void addResult(const c10::IValue &result);
|
|
|
|
MlirOperation create();
|
|
|
|
|
|
|
|
private:
|
|
|
|
AcapController &parent;
|
2020-10-23 14:31:34 +08:00
|
|
|
const c10::OperatorHandle &opHandle;
|
2020-10-19 12:32:29 +08:00
|
|
|
int resultCount = 0;
|
2020-12-15 00:42:42 +08:00
|
|
|
std::vector<std::pair<size_t, at::Tensor>> resultIndexToTensorMap;
|
2020-10-19 12:32:29 +08:00
|
|
|
};
|
|
|
|
|
2020-10-16 09:28:30 +08:00
|
|
|
MlirLocation getCurrentLocation();
|
2020-10-06 14:21:21 +08:00
|
|
|
void redispatch(const c10::OperatorHandle &opHandle, c10::Stack *stack);
|
|
|
|
void fallbackKernelImpl(const c10::OperatorHandle &opHandle,
|
2020-11-13 09:42:19 +08:00
|
|
|
c10::Stack *stack,
|
|
|
|
std::function<void()> redispatchCallback);
|
2020-10-19 12:32:29 +08:00
|
|
|
MlirValue mapIValueToMlirValue(MlirLocation loc, const c10::IValue &ival);
|
|
|
|
MlirType mapIValueToMlirType(MlirLocation loc, const c10::IValue &ival);
|
2020-10-16 09:28:30 +08:00
|
|
|
/// Imports a tensor by value (as a constant), remembering the association.
|
|
|
|
MlirValue importTensorByValue(at::Tensor tensor);
|
2020-10-06 14:21:21 +08:00
|
|
|
void verifyHasNotReturned();
|
2020-09-26 09:13:16 +08:00
|
|
|
struct Activation {
|
|
|
|
Activation(std::shared_ptr<AcapController> controller)
|
|
|
|
: controller(std::move(controller)) {}
|
|
|
|
std::shared_ptr<AcapController> controller;
|
|
|
|
// The RAII dispatch key guard is not movable, so heap allocate it. This is
|
|
|
|
// a bit outside of its intended design, but since this is thread local as
|
|
|
|
// well, it should be fine.
|
2020-10-19 12:32:29 +08:00
|
|
|
std::unique_ptr<c10::impl::IncludeDispatchKeyGuard> includeGuard;
|
|
|
|
std::unique_ptr<c10::impl::ExcludeDispatchKeyGuard> excludeGuard;
|
2020-09-26 09:13:16 +08:00
|
|
|
};
|
|
|
|
// Gets the thread local stack of active acap controllers.
|
|
|
|
static std::list<Activation> &getThreadLocalActiveStack();
|
2020-09-29 09:36:00 +08:00
|
|
|
|
2020-10-06 14:21:21 +08:00
|
|
|
TypeMapper &typeMapper;
|
2020-10-02 09:59:58 +08:00
|
|
|
std::unique_ptr<FuncBuilder> funcBuilder;
|
2020-10-06 14:21:21 +08:00
|
|
|
bool hasReturned = false;
|
2020-09-26 09:13:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace torch_mlir
|
2020-09-29 09:36:00 +08:00
|
|
|
|
|
|
|
#endif // NPCOMP_FRONTENDS_PYTORCH_CSRC_C10_DISPATCH_ACAP_DISPATCH_H
|