onednn-src 0.1.13

Source of oneAPI Deep Neural Network Library (oneDNN)
Documentation
/*******************************************************************************
* Copyright 2020 Intel Corporation
* Copyright 2020 Codeplay Software Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/

#ifndef GPU_AMD_MIOPEN_REDUCTION_IMPL_HPP
#define GPU_AMD_MIOPEN_REDUCTION_IMPL_HPP

#include <miopen/miopen.h>

#include "gpu/amd/engine.hpp"
#include "gpu/amd/stream.hpp"
#include "gpu/amd/sycl_hip_utils.hpp"

namespace dnnl {
namespace impl {
namespace gpu {
namespace amd {

struct miopen_reduction_impl_base_t {
    enum io { src_0 = 0, dst_0, NUM_IO };
    miopenDataType_t data_types[NUM_IO];
    int ndims;
    int dims[NUM_IO][DNNL_MAX_NDIMS];
    miopenTensorDescriptor_t tensor_descs[NUM_IO] = {};
    miopenReduceTensorDescriptor_t reduce_desc_;
    miopenReduceTensorOp_t alg_kind;
    int strides[NUM_IO][DNNL_MAX_NDIMS];
    miopenNanPropagation_t Nanprop
            = miopenNanPropagation_t::MIOPEN_PROPAGATE_NAN;
    miopenReduceTensorIndices_t Indices
            = miopenReduceTensorIndices_t::MIOPEN_REDUCE_TENSOR_NO_INDICES;
    miopenIndicesType_t IndicesType = miopenIndicesType_t::MIOPEN_32BIT_INDICES;
    size_t workSpaceSize = 0;
    float beta = 0.0f;
    float alpha = 1.0f;

    virtual ~miopen_reduction_impl_base_t() {
        if (reduce_desc_) {
            MIOPEN_EXECUTE_FUNC_V(
                    miopenDestroyReduceTensorDescriptor, reduce_desc_);
        }
        for (size_t i = 0; i < NUM_IO; i++) {
            if (tensor_descs[i]) {
                MIOPEN_EXECUTE_FUNC_V(
                        miopenDestroyTensorDescriptor, tensor_descs[i]);
            }
        }
    }

    virtual status_t init(reduction_pd_t *pd) = 0;

    virtual void create_and_set_workspace(
            reduction_pd_t *pd, impl::engine_t *engine)
            = 0;

    void execute(miopenHandle_t handle, void *a, void *c, void *scratch) {
        MIOPEN_EXECUTE_FUNC(miopenReduceTensor, handle, reduce_desc_, nullptr,
                0, scratch, workSpaceSize, &alpha, tensor_descs[src_0], a,
                &beta, tensor_descs[dst_0], c);
    }

    status_t create_and_set_reduction_descriptor(const reduction_pd_t *pd) {
        CHECK(MIOPEN_EXECUTE_FUNC_S(
                miopenCreateReduceTensorDescriptor, &reduce_desc_));

        CHECK(MIOPEN_EXECUTE_FUNC_S(miopenSetReduceTensorDescriptor,
                reduce_desc_, alg_kind, miopenFloat, Nanprop, Indices,
                IndicesType));
        return status::success;
    }

    status_t convert_alg_kind(alg_kind_t alg_kind,
            miopenReduceTensorOp_t *miopen_alg_kind) const {

        switch (alg_kind) {
            case alg_kind::reduction_max:
                *miopen_alg_kind
                        = miopenReduceTensorOp_t::MIOPEN_REDUCE_TENSOR_MAX;
                break;
            case alg_kind::reduction_min:
                *miopen_alg_kind
                        = miopenReduceTensorOp_t::MIOPEN_REDUCE_TENSOR_MIN;
                break;
            case alg_kind::reduction_sum:
                *miopen_alg_kind
                        = miopenReduceTensorOp_t::MIOPEN_REDUCE_TENSOR_ADD;
                break;
            case alg_kind::reduction_mul:
                *miopen_alg_kind
                        = miopenReduceTensorOp_t::MIOPEN_REDUCE_TENSOR_MUL;
                break;
            case alg_kind::reduction_mean:
                *miopen_alg_kind
                        = miopenReduceTensorOp_t::MIOPEN_REDUCE_TENSOR_AVG;
                break;
            case alg_kind::reduction_norm_lp_sum:
                *miopen_alg_kind
                        = miopenReduceTensorOp_t::MIOPEN_REDUCE_TENSOR_NORM2;
                break;
            case alg_kind::reduction_norm_lp_power_p_sum:
                *miopen_alg_kind
                        = miopenReduceTensorOp_t::MIOPEN_REDUCE_TENSOR_NORM1;
                break;
            default: return status::unimplemented;
        }
        return status::success;
    }
};

struct miopen_reduction_impl_t : public miopen_reduction_impl_base_t {

    status_t init(reduction_pd_t *pd) override {
        if (has_zero_dims(pd->src_md()->dims, pd->src_md()->ndims)) {
            return status::success;
        }

        if (pd->src_md()->ndims > MIOPEN_DIM_MAX) {
            return status::invalid_arguments;
        }
        ndims = pd->src_md()->ndims < 4 ? 4 : pd->src_md()->ndims;

        convert_dims(
                pd->src_md()->padded_dims, dims[src_0], pd->src_md()->ndims);
        convert_dims(
                pd->dst_md()->padded_dims, dims[dst_0], pd->src_md()->ndims);

        convert_dims(pd->src_md()->format_desc.blocking.strides, strides[src_0],
                pd->src_md()->ndims);
        convert_dims(pd->dst_md()->format_desc.blocking.strides, strides[dst_0],
                pd->src_md()->ndims);

        alg_kind_t alg = pd->desc()->alg_kind;

        auto alg_ok = convert_alg_kind(alg, &alg_kind);
        if (alg_ok != status::success) { return status::unimplemented; }

        CHECK(convert_data_type(pd->src_md(), &data_types[src_0]));
        CHECK(convert_data_type(pd->dst_md(), &data_types[dst_0]));

        CHECK(create_and_set_tensor_descriptor(&tensor_descs[src_0],
                data_types[src_0], ndims, dims[src_0], strides[src_0]));
        CHECK(create_and_set_tensor_descriptor(&tensor_descs[dst_0],
                data_types[dst_0], ndims, dims[dst_0], strides[dst_0]));
        CHECK(create_and_set_reduction_descriptor(pd));
        return status::success;
    }

    void create_and_set_workspace(
            reduction_pd_t *pd, impl::engine_t *engine) override {
        auto sycl_engine = utils::downcast<amd::engine_t *>(engine);

        impl::stream_t *service_stream;
        sycl_engine->get_service_stream(service_stream);

        auto hip_stream = utils::downcast<stream_t *>(service_stream);
        auto hip_handle = hip_stream->get_miopen_handle();

        MIOPEN_EXECUTE_FUNC_S(miopenGetReductionWorkspaceSize, hip_handle,
                reduce_desc_, tensor_descs[src_0], tensor_descs[dst_0],
                &workSpaceSize);
        pd->scratchpad_registry().registrar().book(
                memory_tracking::names::key_none, workSpaceSize, size_t(1));
    }
};

} // namespace amd
} // namespace gpu
} // namespace impl
} // namespace dnnl

#endif