struct InferenceEngine::gapi::kernels::linearScratchDesc

template <typename T, typename Mapper, int chanNum>
struct linearScratchDesc
{
    // typedefs

    typedef typename Mapper::alpha_type alpha_t;
    typedef typename Mapper::index_type index_t;

    // fields

    alpha_t \* alpha;
    alpha_t \* clone;
    index_t \* mapsx;
    alpha_t \* beta;
    index_t \* mapsy;
    T \* tmp;

    // construction

    linearScratchDesc(int, int, int outW, int outH, void \* data);

    // methods

    static int bufSize(int inW, int, int outW, int outH, int lpi);
};