reduction_functions_accumulate.hpp 3.45 KB
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
// SPDX-License-Identifier: MIT
// Copyright (c) 2018-2022, Advanced Micro Devices, Inc. All rights reserved.

Chao Liu's avatar
Chao Liu committed
4
5
6
7
8
9
#pragma once

#include "ck/utility/data_type.hpp"
#include "ck/utility/math_v2.hpp"
#include "ck/utility/reduction_common.hpp"
#include "ck/utility/reduction_operator.hpp"
10
11
12
13

namespace ck {
namespace detail {

14
15
16
17
18
19
20
21
22
23
24
25
26
// Check for NaN; guarantee NaNs are NOT propagated to result (i.e., ignore NaNs)
template <typename ReduceOperation, typename AccDataType>
struct AccumulateWithNanIgnore
{
    __device__ static inline void Calculate(AccDataType& accuVal, AccDataType currVal)
    {
        if(!isnan(currVal))
        {
            ReduceOperation{}(accuVal, currVal);
        }
    };
};

27
28
template <bool PropagateNan, typename ReduceOperation, typename AccDataType>
struct AccumulateWithNanCheck;
29

30
31
32
33
34
// Does not check for NaN; does not guarantee NaNs be propagated to result
// e.g., given that max(a, b) = a > b ? a : b
// then  max(NaN, 1) returns 1
//       max(1, NaN) returns NaN
// since any comparison involving NaNs returns false
35
36
template <typename ReduceOperation, typename AccDataType>
struct AccumulateWithNanCheck<false, ReduceOperation, AccDataType>
37
38
{
    // cppcheck-suppress constParameter
39
    __host__ __device__ static inline void Calculate(AccDataType& accuVal, AccDataType currVal)
40
41
42
43
44
    {
        ReduceOperation{}(accuVal, currVal);
    };
};

45
// Check for NaN; guarantees NaNs be propagated to result
46
47
48
template <typename ReduceOperation, typename AccDataType>
struct AccumulateWithNanCheck<true, ReduceOperation, AccDataType>
{
49
    __host__ __device__ static inline void Calculate(AccDataType& accuVal, AccDataType currVal)
50
    {
51
52
53
        using ck::math::isnan;

        if(isnan(currVal))
54
55
56
57
58
59
60
        {
            accuVal = currVal;
        }
        else
        {
            ReduceOperation{}(accuVal, currVal);
        };
61
    };
62
63
64
65
};

template <bool PropagateNan, typename ReduceOperation, typename AccDataType, typename IndexDataType>
struct AccumulateWithIndexAndNanCheck;
66

67
68
69
template <typename ReduceOperation, typename AccDataType, typename IndexDataType>
struct AccumulateWithIndexAndNanCheck<false, ReduceOperation, AccDataType, IndexDataType>
{
70
    __host__ __device__ static inline void
71
    // cppcheck-suppress constParameter
72
73
74
75
    Calculate(AccDataType& accuVal,
              AccDataType currVal,
              IndexDataType& accuIndex,
              IndexDataType currIndex)
76
77
78
    {
        bool changed = false;

79
        ReduceOperation{}(accuVal, currVal, changed);
80
81
82
83
84
85

        if(changed)
            accuIndex = currIndex;
    };
};

86
87
template <typename ReduceOperation, typename AccDataType, typename IndexDataType>
struct AccumulateWithIndexAndNanCheck<true, ReduceOperation, AccDataType, IndexDataType>
88
{
89
    // The method is called when the ReduceOperation is indexable and the user asked for indices
90
91
92
93
    __host__ __device__ static inline void Calculate(AccDataType& accuVal,
                                                     AccDataType currVal,
                                                     IndexDataType& accuIndex,
                                                     IndexDataType currIndex)
94
    {
95
96
97
        using ck::math::isnan;

        if(isnan(currVal))
98
99
100
101
102
103
104
105
        {
            accuVal   = currVal;
            accuIndex = currIndex;
        }
        else
        {
            bool changed = false;

106
            ReduceOperation{}(accuVal, currVal, changed);
107
108
109
110
111
112
113

            if(changed)
                accuIndex = currIndex;
        }
    };
};

Chao Liu's avatar
Chao Liu committed
114
115
} // namespace detail
} // namespace ck