struct ngraph::runtime::reference::widen<double>

#include <helpers.hpp>

template <>
struct widen<double>
{
    // typedefs

    typedef long double type;
};

struct ngraph::runtime::reference::widen

#include <helpers.hpp>

template <typename T>
struct widen
{
    // typedefs

    typedef T type;
};

struct ngraph::runtime::reference::widen<float>

#include <helpers.hpp>

template <>
struct widen<float>
{
    // typedefs

    typedef double type;
};