1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
/******************************************************************************
* Copyright (c) Intel Corporation - All rights reserved. *
* This file is part of the LIBXSMM library. *
* *
* For information on the license, see the LICENSE file. *
* Further information: https://github.com/hfp/libxsmm/ *
* SPDX-License-Identifier: BSD-3-Clause *
******************************************************************************/
/* Sasikanth Avancha, Dhiraj Kalamkar (Intel Corp.)
******************************************************************************/
#pragma once
#include "ImageDataImpl.hpp"
class ImageDataRGBFlat : public ImageDataImpl
{
protected:
int *r_offset, *c_offset, *augmentation;
public:
ImageDataRGBFlat(DataImplParams *gp, AugmentParams *ap) : ImageDataImpl(gp, ap)
{
r_offset = new int[gp->batch_size];
c_offset = new int[gp->batch_size];
augmentation = new int[gp->batch_size];
}
void forwardPropagate(unsigned char *inp, float *outp);
void forwardPropagate(unsigned char *inp, int test_view, float *outp);
void processTrainMinibatch(unsigned char *inp, float *outp);
void processTestMinibatch(unsigned char *inp, int tv, float *outp);
};
|