/******************************************************************************* * * MIT License * * Copyright (c) 2020 Advanced Micro Devices, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * *******************************************************************************/ #ifndef CK_REDUCTION_OPERATOR_MAPPING_HPP #define CK_REDUCTION_OPERATOR_MAPPING_HPP #include "reduction_operator.hpp" #include "reduction_enums.hpp" #include "element_wise_operation.hpp" namespace ck { // The templated struct reduce_binary_operator maps the enum Ids of binary operators to their // respective functor classes. // The boolean member "indexable" are also provided in reduce_binary_operactor for // easier checking by the upper-layer codes in the kernels. template struct reduce_binary_operator; template struct reduce_binary_operator { using opType = reduce::Add; using dataType = T; static constexpr bool indexable = false; }; template struct reduce_binary_operator { using opType = reduce::Mul; using dataType = T; static constexpr bool indexable = false; }; template struct reduce_binary_operator { using opType = reduce::Min; using dataType = T; static constexpr bool indexable = true; }; template struct reduce_binary_operator { using opType = reduce::Max; using dataType = T; static constexpr bool indexable = true; }; template struct reduce_binary_operator { using opType = reduce::AMax; using dataType = T; static constexpr bool indexable = true; }; template struct reduce_binary_operator { using opType = reduce::Add; using dataType = T; static constexpr bool indexable = false; }; template struct reduce_binary_operator { using opType = reduce::Add; using dataType = T; static constexpr bool indexable = false; }; template struct reduce_binary_operator { using opType = reduce::Add; using dataType = T; static constexpr bool indexable = false; }; // The templated struct reduce_unary_operator maps the enum Ids of Reduce operators to two unary // functor classes. // The two unary functors are called before and afer the Reduction is executed respectively template struct reduce_unary_operator { using InElementwiseOperation = tensor_operation::element_wise::UnaryIdentic; using AccElementwiseOperation = tensor_operation::element_wise::UnaryIdentic; }; template struct reduce_unary_operator { using InElementwiseOperation = tensor_operation::element_wise::UnaryIdentic; using AccElementwiseOperation = tensor_operation::element_wise::UnaryIdentic; }; template struct reduce_unary_operator { using InElementwiseOperation = tensor_operation::element_wise::UnaryAbs; using AccElementwiseOperation = tensor_operation::element_wise::UnaryIdentic; }; template struct reduce_unary_operator { using InElementwiseOperation = tensor_operation::element_wise::UnaryAbs; using AccElementwiseOperation = tensor_operation::element_wise::UnaryIdentic; }; template struct reduce_unary_operator { using InElementwiseOperation = tensor_operation::element_wise::UnarySquare; using AccElementwiseOperation = tensor_operation::element_wise::UnaryIdentic; }; template struct reduce_unary_operator { using InElementwiseOperation = tensor_operation::element_wise::UnarySquare; using AccElementwiseOperation = tensor_operation::element_wise::UnarySqrt; }; template struct reduce_unary_operator { using InElementwiseOperation = tensor_operation::element_wise::UnaryIdentic; using AccElementwiseOperation = tensor_operation::element_wise::UnarySqrt; }; } // end of namespace ck #endif