Blob Blame Raw
#ifndef TEST_ALL_INC_CPP
#define TEST_ALL_INC_CPP



#include "layer.simple.test.inc.cpp"
#include "layer.conv.test.inc.cpp"
#include "segment.cx4.test.inc.cpp"


class AllTest: public Test {
public:
  static bool test(const char *name = "all") {
    Stage st(name);
    //SimpleTest::test();
    //ConvTest::test();
    Cx4Test::test();
    return st;
  }
};


#endif