#ifndef GRAPH_BACKEND_DNNL_KERNELS_BINARY_HPP
#define GRAPH_BACKEND_DNNL_KERNELS_BINARY_HPP
#include <algorithm>
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "graph/backend/dnnl/kernels/kernel_base.hpp"
#include "graph/backend/dnnl/dnnl_constant_tensor_cache.hpp"
#include "graph/backend/dnnl/dnnl_partition_impl.hpp"
#include "graph/backend/dnnl/scratchpad.hpp"
#include "graph/backend/dnnl/subgraph.hpp"
#include "graph/backend/dnnl/thread_local_cache.hpp"
#include "graph/backend/dnnl/passes/memory_planning.hpp"
namespace dnnl {
namespace impl {
namespace graph {
namespace dnnl_impl {
struct binary_t : public kernel_base_t {
private:
allocator_t *g_alloc_ = nullptr;
std::shared_ptr<subgraph_t> subgraph_;
memory_planner_t memory_planner_;
std::function<std::shared_ptr<execution_args_set_t>()> resource_ctor_;
status_t prepare_inplace_pairs_impl() override {
inplace_pairs_ = memory_planner_.get_subgraph_inplace_pairs();
return status::success;
}
public:
binary_t() {
thread_local_cache_t<execution_args_set_t> res_cache;
res_cache.retain();
}
~binary_t() override {
thread_local_cache_t<execution_args_set_t> res_cache;
res_cache.remove_if_exist(reinterpret_cast<size_t>(this));
res_cache.release();
}
void prepare_args_set(const execution_args_set_t *res,
const std::vector<tensor_t> &inputs,
const std::vector<tensor_t> &outputs,
const scratchpad_t &scratchpad);
status_t compile_impl(const dnnl_partition_impl_t *part,
const engine_t *g_engine,
const std::vector<logical_tensor_t> &inputs,
const std::vector<logical_tensor_t> &outputs) override;
status_t execute_impl(const stream_t *g_stream,
const std::vector<tensor_t> &inputs,
const std::vector<tensor_t> &outputs) override;
#ifdef DNNL_WITH_SYCL
status_t sycl_execute_impl(const stream_t *g_stream,
const std::vector<tensor_t> &inputs,
const std::vector<tensor_t> &outputs,
const std::vector<::sycl::event> &sycl_deps,
::sycl::event *sycl_event) override;
#endif
#if DNNL_GPU_RUNTIME == DNNL_RUNTIME_OCL
status_t ocl_execute_impl(const stream_t *g_stream,
const std::vector<tensor_t> &inputs,
const std::vector<tensor_t> &outputs,
const std::vector<cl_event> &ocl_deps,
cl_event *ocl_event) override;
#endif
DEF_KERNEL_METHOD_STR(binary_t)
DNNL_DISALLOW_COPY_AND_ASSIGN(binary_t)
};
} } } }
#endif