/** * \file dnn/src/arm_common/pooling/opr_impl.h * MegEngine is Licensed under the Apache License, Version 2.0 (the "License") * * Copyright (c) 2014-2020 Megvii Inc. All rights reserved. * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. */ #pragma once #include "src/fallback/pooling/opr_impl.h" namespace megdnn { namespace arm_common { class PoolingImpl final : public fallback::PoolingImpl { public: using fallback::PoolingImpl::PoolingImpl; void exec(_megdnn_tensor_in src, _megdnn_tensor_out dst, _megdnn_workspace workspace) override; size_t get_workspace_in_bytes(const TensorLayout&, const TensorLayout&) override; static size_t constexpr MAX_SPATIAL_DIM = 2; struct PoolingKernSizeParam { uint32_t n, ic; std::array isz, osz; std::array padding, filter, stride; DType src_type, dst_type; Handle* handle; Param::Format format; Mode mode; }; struct PoolingKernParam : public PoolingKernSizeParam { void* src_ptr; void* dst_ptr; void* workspace_ptr; size_t workspace_size; template const T* src() const { src_type.assert_is_compatible_ctype(); return static_cast(src_ptr); } template T* dst() const { dst_type.assert_is_compatible_ctype(); return static_cast(dst_ptr); } template T* workspace() const { return static_cast(workspace_ptr); } }; PoolingKernSizeParam make_pooling_kern_szie_param( fallback::PoolingImpl* opr, const TensorLayout& src, const TensorLayout& dst); PoolingKernParam make_pooling_kern_param(fallback::PoolingImpl* opr, _megdnn_tensor_in src, _megdnn_tensor_out dst, _megdnn_workspace workspace); class AlgoBase : public detail::Algorithm { public: virtual ~AlgoBase() = default; virtual bool usable(const PoolingKernSizeParam& param) const = 0; virtual void exec(const PoolingKernParam& param) const = 0; }; private: class AlgoFilterxModexStride1; class AlgoFilter2ModexStride2; class AlgoFilter3MaxStride2; class AlgoFilter3AverageStride2; class AlgoFilter4MaxStride2; class AlgoFilter5MaxStride2; class AlgoInt8Filter2MaxStride2; class AlgoInt8Filter3MaxStride2; class AlgoPack; }; } // namespace arm_common } // namespace megdnn // vim: syntax=cpp.doxygen