aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/Log.hpp
blob: 98b6b824ccf5b025462837a9fa8e1ec52c637219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <iostream>

namespace armnn
{
    template<typename T>
struct log : public std::unary_function<T, T>
    {
        T
        operator () (const T&  inputData) const
        {
            // computes natural logarithm of inputData
            return std::log(inputData);
        }
    };

} //namespace armnn